diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-10-21 06:18:15 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-10-21 06:18:15 +0200 |
commit | b2d2222423299e5508cb3ac24ec1bddcb93cca76 (patch) | |
tree | 3c3849da71531fc86cb79292e54006e3747d9e83 /modules | |
parent | First Patch! [Well, my own typo.] (diff) | |
download | apache2-b2d2222423299e5508cb3ac24ec1bddcb93cca76.tar.xz apache2-b2d2222423299e5508cb3ac24ec1bddcb93cca76.zip |
Round out const'ness
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91615 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/arch/win32/mod_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arch/win32/mod_win32.c b/modules/arch/win32/mod_win32.c index 457421c4d8..b81cc2e456 100644 --- a/modules/arch/win32/mod_win32.c +++ b/modules/arch/win32/mod_win32.c @@ -359,7 +359,7 @@ static apr_array_header_t *split_argv(apr_pool_t *p, const char *interp, const c } if (!argtaken) { - char *cgiarg = cgiargs; + const char *cgiarg = cgiargs; for (;;) { char *w = ap_getword_nulls(p, &cgiarg, '+'); if (!*w) |