This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
commit 23523796fe698d3f2e2e27c4d4df7119da79231c Author: Mark Thomas <[email protected]> AuthorDate: Thu May 2 15:28:27 2019 +0100 Fix build failure introduced with fix for DBCP-396 --- src/native/windows/apps/prunmgr/prunmgr.c | 6 ++++++ src/native/windows/apps/prunsrv/prunsrv.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/native/windows/apps/prunmgr/prunmgr.c b/src/native/windows/apps/prunmgr/prunmgr.c index b759ea9..600370a 100644 --- a/src/native/windows/apps/prunmgr/prunmgr.c +++ b/src/native/windows/apps/prunmgr/prunmgr.c @@ -1820,3 +1820,9 @@ cleanup: return 0; } +// TODO: Figure out a way to move apxSetInprocEnvironment from here and +// prunsrv.c to utils.c +void apxSetInprocEnvironment() +{ + // NO-OP. +} diff --git a/src/native/windows/apps/prunsrv/prunsrv.c b/src/native/windows/apps/prunsrv/prunsrv.c index a295b9d..8473efb 100644 --- a/src/native/windows/apps/prunsrv/prunsrv.c +++ b/src/native/windows/apps/prunsrv/prunsrv.c @@ -410,6 +410,8 @@ static void dumpCmdline() } } +// TODO: Figure out a way to move apxSetInprocEnvironment from here and +// prunmgr.c to utils.c void apxSetInprocEnvironment() { LPWSTR p, e;
