You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2010/12/01 04:11:46 UTC

svn commit: r1040866 - /httpd/httpd/trunk/server/mpm/winnt/service.c

Author: wrowe
Date: Wed Dec  1 03:11:46 2010
New Revision: 1040866

URL: http://svn.apache.org/viewvc?rev=1040866&view=rev
Log:
Correct constness fix to manipulate our copy

Modified:
    httpd/httpd/trunk/server/mpm/winnt/service.c

Modified: httpd/httpd/trunk/server/mpm/winnt/service.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/service.c?rev=1040866&r1=1040865&r2=1040866&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/service.c (original)
+++ httpd/httpd/trunk/server/mpm/winnt/service.c Wed Dec  1 03:11:46 2010
@@ -822,7 +822,7 @@ apr_status_t mpm_service_start(apr_pool_
                                const char * const * argv)
 {
     apr_status_t rv;
-    const char **start_argv;
+    char **start_argv;
     SC_HANDLE   schService;
     SC_HANDLE   schSCManager;