diff options
author | Ryan Bloom <rbb@apache.org> | 2000-06-01 00:06:33 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-06-01 00:06:33 +0200 |
commit | 24beda9563a83c07b093a6b18488e8a938e3394d (patch) | |
tree | 1b45f19b0f2c77d424322e6ab21eeefdb25c67ed /include | |
parent | PR: (diff) | |
download | apache2-24beda9563a83c07b093a6b18488e8a938e3394d.tar.xz apache2-24beda9563a83c07b093a6b18488e8a938e3394d.zip |
Remove a warning when compiled with --use-maintainer-mode. Basically,
process_rec should just be storing argv the same way that getopt
expects it.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85361 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/httpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/httpd.h b/include/httpd.h index 6b44d53450..165f713252 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -602,7 +602,7 @@ struct process_rec { ap_pool_t *pool; /* Global pool. Please try to cleared on _all_ exits */ ap_pool_t *pconf; /* aka configuration pool, cleared on restarts */ int argc; - const char **argv; + char *const *argv; const char *short_name; }; |