diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-02-26 10:34:47 +0100 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-02-26 10:34:47 +0100 |
commit | abcb9e30113207f5cff62427a8f3b872eb655a08 (patch) | |
tree | 8df7f10f6e91be7ad7bc39fbaacc12da22bbf9aa /server/mpm/winnt/service.c | |
parent | 'votes' (diff) | |
download | apache2-abcb9e30113207f5cff62427a8f3b872eb655a08.tar.xz apache2-abcb9e30113207f5cff62427a8f3b872eb655a08.zip |
Axed C++ comments and tabs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1074809 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/mpm/winnt/service.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index 7bc9e22154..adfea4a1e6 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -694,19 +694,19 @@ apr_status_t mpm_service_install(apr_pool_t *ptemp, int argc, * depend on it. */ /* ###: utf-ize */ - schService = CreateService(schSCManager, // SCManager database - mpm_service_name, // name of service - mpm_display_name, // name to display - SERVICE_ALL_ACCESS, // access required - SERVICE_WIN32_OWN_PROCESS, // service type - SERVICE_AUTO_START, // start type - SERVICE_ERROR_NORMAL, // error control type - launch_cmd, // service's binary - NULL, // no load svc group - NULL, // no tag identifier - "Tcpip\0Afd\0", // dependencies - NULL, // use SYSTEM account - NULL); // no password + schService = CreateService(schSCManager, /* SCManager database */ + mpm_service_name, /* name of service */ + mpm_display_name, /* name to display */ + SERVICE_ALL_ACCESS, /* access required */ + SERVICE_WIN32_OWN_PROCESS, /* service type */ + SERVICE_AUTO_START, /* start type */ + SERVICE_ERROR_NORMAL, /* error control type */ + launch_cmd, /* service's binary */ + NULL, /* no load svc group */ + NULL, /* no tag identifier */ + "Tcpip\0Afd\0", /* dependencies */ + NULL, /* use SYSTEM account */ + NULL); /* no password */ if (!schService) { @@ -893,7 +893,7 @@ void mpm_signal_service(apr_pool_t *ptemp, int signal) SC_HANDLE schService; SC_HANDLE schSCManager; - schSCManager = OpenSCManager(NULL, NULL, // default machine & database + schSCManager = OpenSCManager(NULL, NULL, /* default machine & database */ SC_MANAGER_CONNECT); if (!schSCManager) { |