diff options
author | Jeff Trawick <trawick@apache.org> | 2009-03-29 16:41:02 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2009-03-29 16:41:02 +0200 |
commit | a1908585a8c3caa0438a917ac2f802b97d21e3a0 (patch) | |
tree | 70df0f73761758f0170ef3dfda8ca0a0edf569c7 /server/mpm/prefork | |
parent | install mod_serf.h (diff) | |
download | apache2-a1908585a8c3caa0438a917ac2f802b97d21e3a0.tar.xz apache2-a1908585a8c3caa0438a917ac2f802b97d21e3a0.zip |
Core can specify a platform-specific rewrite args hook. Use that on Unix.
Windows continues to specify this in the MPM, at least until someone
can separate out the MPM-specific bits.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759699 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/prefork')
-rw-r--r-- | server/mpm/prefork/prefork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index e2f7d5b470..553355deac 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -1536,7 +1536,7 @@ AP_GRACEFUL_SHUTDOWN_TIMEOUT_COMMAND, module AP_MODULE_DECLARE_DATA mpm_prefork_module = { MPM20_MODULE_STUFF, - ap_mpm_rewrite_args, /* hook to run before apache parses args */ + NULL, /* hook to run before apache parses args */ NULL, /* create per-directory config structure */ NULL, /* merge per-directory config structures */ NULL, /* create per-server config structure */ |