From: William A. Rowe Jr Date: Wed, 1 Dec 2010 03:11:46 +0000 (+0000) Subject: Correct constness fix to manipulate our copy X-Git-Tag: 2.3.10~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be0cd65b51642d8373a216ea9b44b665a290fb31;p=apache Correct constness fix to manipulate our copy git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1040866 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index 8c19fcf595..7bc9e22154 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -822,7 +822,7 @@ apr_status_t mpm_service_start(apr_pool_t *ptemp, int argc, const char * const * argv) { apr_status_t rv; - const char **start_argv; + char **start_argv; SC_HANDLE schService; SC_HANDLE schSCManager;