]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Register rewrite_args hook.
authorMladen Turk <mturk@apache.org>
Sun, 29 Mar 2009 08:22:28 +0000 (08:22 +0000)
committerMladen Turk <mturk@apache.org>
Sun, 29 Mar 2009 08:22:28 +0000 (08:22 +0000)
Now, dunno if that was intended, but at least allow to start the httpd

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759648 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/event/event.c
server/mpm/prefork/prefork.c
server/mpm/worker/worker.c

index 71c7bd90fb5de3fcdc4e5b5fafe13a0f6543ab43..d01207347bd6fa97fadd60f868526029a20a240c 100644 (file)
@@ -2856,7 +2856,7 @@ static const command_rec event_cmds[] = {
 
 module AP_MODULE_DECLARE_DATA mpm_event_module = {
     MPM20_MODULE_STUFF,
-    NULL,                       /* hook to run before apache parses args */
+    ap_mpm_rewrite_args,        /* 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 */
index 14ecafbe0f9497620cbdbf8683c60f9b16b935a7..5546206600c76e8abd59f5620ae4b1b1ecaca881 100644 (file)
@@ -1538,7 +1538,7 @@ AP_GRACEFUL_SHUTDOWN_TIMEOUT_COMMAND,
 
 module AP_MODULE_DECLARE_DATA mpm_prefork_module = {
     MPM20_MODULE_STUFF,
-    NULL,                       /* hook to run before apache parses args */
+    ap_mpm_rewrite_args,        /* 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 */
index f486c9762e7620a528dbac4866fc92143db801c9..3a9efb60bbfd0e2172c7bbed40a74135d29538fa 100644 (file)
@@ -2354,7 +2354,7 @@ AP_GRACEFUL_SHUTDOWN_TIMEOUT_COMMAND,
 
 module AP_MODULE_DECLARE_DATA mpm_worker_module = {
     MPM20_MODULE_STUFF,
-    NULL,                       /* hook to run before apache parses args */
+    ap_mpm_rewrite_args,        /* 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 */