]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
Use "const char * const *" for process->argv (which is the correct
authorGreg Stein <gstein@apache.org>
Wed, 29 Nov 2000 17:33:03 +0000 (17:33 +0000)
committerGreg Stein <gstein@apache.org>
Wed, 29 Nov 2000 17:33:03 +0000 (17:33 +0000)
commit656a5d308172035a18dcfda256de30f463d3145e
treeee83bd84e2603dadf8707338ac1af4d30611da5d
parentb5b58950192cc45ef331cc0625b9ed67b7ac5e9a
Use "const char * const *" for process->argv (which is the correct
const-ness since we sometimes put "some string" in there, and also the CRT's
argv). propagate this change within http_main and mpm/winnt/ (also correct
some other const type usage within the MPM).

fix ab's call to parse_url() which removed a const to actually manipulate an
arg from the CRT's argv (indirectly via opt->arg). no idea how this has
avoided segfaulting.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87130 13f79535-47bb-0310-9956-ffa450edef68
include/httpd.h
server/main.c
server/mpm/winnt/mpm_winnt.c
server/mpm/winnt/registry.c
server/mpm/winnt/service.c
support/ab.c