From: William A. Rowe Jr Date: Sat, 7 May 2011 04:15:27 +0000 (+0000) Subject: Not possible; you don't declare a variable const and then X-Git-Tag: 2.2.18~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b1b27e2b413da77a03e4aa9fda86904958ededf;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index d8f40b48068..aa5291d260d 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;