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 2011/05/07 06:15:28 UTC

svn commit: r1100444 - /httpd/httpd/branches/2.2.x/server/mpm/winnt/service.c

Author: wrowe
Date: Sat May  7 04:15:27 2011
New Revision: 1100444

URL: http://svn.apache.org/viewvc?rev=1100444&view=rev
Log:
Not possible; you don't declare a variable const and then
maniuplate it.

Backports: r1100443

Modified:
    httpd/httpd/branches/2.2.x/server/mpm/winnt/service.c

Modified: httpd/httpd/branches/2.2.x/server/mpm/winnt/service.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/server/mpm/winnt/service.c?rev=1100444&r1=1100443&r2=1100444&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/server/mpm/winnt/service.c (original)
+++ httpd/httpd/branches/2.2.x/server/mpm/winnt/service.c Sat May  7 04:15:27 2011
@@ -1040,7 +1040,7 @@ apr_status_t mpm_service_start(apr_pool_
 
     if (osver.dwPlatformId == VER_PLATFORM_WIN32_NT)
     {
-        const CHAR **start_argv;
+        CHAR **start_argv;
         SC_HANDLE   schService;
         SC_HANDLE   schSCManager;