hgomez 2004/03/02 07:11:31
Modified: jk/native2/server/apache2 mod_jk2.c
Log:
jk2 should came in FIRST pos but came after mod_rewrite
Revision Changes Path
1.70 +3 -2 jakarta-tomcat-connectors/jk/native2/server/apache2/mod_jk2.c
Index: mod_jk2.c
===================================================================
RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/server/apache2/mod_jk2.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- mod_jk2.c 27 Feb 2004 14:24:57 -0000 1.69
+++ mod_jk2.c 2 Mar 2004 15:11:31 -0000 1.70
@@ -899,7 +899,8 @@
/* Force the mpm to run before us and set the scoreboard image */
ap_hook_child_init(jk2_child_init, NULL, NULL, APR_HOOK_LAST);
- ap_hook_translate_name(jk2_translate, aszPre, NULL, APR_HOOK_MIDDLE);
+ /* jk2 is in FIRST pos but came after mod_rewrite */
+ ap_hook_translate_name(jk2_translate, aszPre, NULL, APR_HOOK_FIRST);
ap_hook_map_to_storage(jk2_map_to_storage, NULL, NULL, APR_HOOK_MIDDLE);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]