summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2011-05-07 04:15:27 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2011-05-07 04:15:27 +0000
commit6b1b27e2b413da77a03e4aa9fda86904958ededf (patch)
treec71985ebfa3b4eff082bfa333c3c95bbaf3c5525
parent66aa5b8454dbf6d7f42034584aa88efc6189e9b8 (diff)
downloadhttpd-6b1b27e2b413da77a03e4aa9fda86904958ededf.tar.gz
Not possible; you don't declare a variable const and then
maniuplate it. Backports: r1100443 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1100444 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/mpm/winnt/service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c
index d8f40b4806..aa5291d260 100644
--- a/server/mpm/winnt/service.c
+++ b/server/mpm/winnt/service.c
@@ -1040,7 +1040,7 @@ apr_status_t mpm_service_start(apr_pool_t *ptemp, int argc,
if (osver.dwPlatformId == VER_PLATFORM_WIN32_NT)
{
- const CHAR **start_argv;
+ CHAR **start_argv;
SC_HANDLE schService;
SC_HANDLE schSCManager;