]> granicus.if.org Git - apache/commitdiff
doh. the permission thing is independent from rewrite log
authorAndré Malo <nd@apache.org>
Mon, 18 Aug 2003 21:57:45 +0000 (21:57 +0000)
committerAndré Malo <nd@apache.org>
Mon, 18 Aug 2003 21:57:45 +0000 (21:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101010 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index f063b79c12c5092ad98a00231bc4346366ca5fd7..bc55cea1135cadcd6e54f971683236aa244dbdb2 100644 (file)
 
 #include "mod_rewrite.h"
 
+#if !defined(OS2) && !defined(WIN32) && !defined(BEOS)  && !defined(NETWARE)
+#include "unixd.h"
+#define MOD_REWRITE_SET_MUTEX_PERMS /* XXX Apache should define something */
+#endif
 
 /*
  * in order to improve performance on running production systems, you
  * responsible for answering all the mod_rewrite questions out there.
  */
 #ifndef REWRITELOG_DISABLED
+
 #define rewritelog(x) do_rewritelog x
 #define REWRITELOG_MODE  ( APR_UREAD | APR_UWRITE | APR_GREAD | APR_WREAD )
 #define REWRITELOG_FLAGS ( APR_WRITE | APR_APPEND | APR_CREATE )
 
-#if !defined(OS2) && !defined(WIN32) && !defined(BEOS)  && !defined(NETWARE)
-#include "unixd.h"
-#define MOD_REWRITE_SET_MUTEX_PERMS /* XXX Apache should define something */
-#endif
-
 #else /* !REWRITELOG_DISABLED */
 
 #define rewritelog(x)