diff options
Diffstat (limited to 'patches/lighttpd_mod_rewrite.patch')
-rw-r--r-- | patches/lighttpd_mod_rewrite.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/patches/lighttpd_mod_rewrite.patch b/patches/lighttpd_mod_rewrite.patch deleted file mode 100644 index 4a2d31c..0000000 --- a/patches/lighttpd_mod_rewrite.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- src/mod_rewrite.c 2011-07-04 01:02:38.000000000 +0200 -+++ mod_rewrite.c 2011-07-04 01:03:41.000000000 +0200 -@@ -461,7 +461,7 @@ - /* skip if physical.path is a regular file */ - sce = NULL; - if (HANDLER_ERROR != stat_cache_get_entry(srv, con, con->physical.path, &sce)) { -- if (S_ISREG(sce->st.st_mode)) return HANDLER_GO_ON; -+ if (S_ISREG(sce->st.st_mode) || S_ISDIR(sce->st.st_mode)) return HANDLER_GO_ON; - } - - switch(r = process_rewrite_rules(srv, con, p, p->conf.rewrite_NF)) { |