Mailing List Archive

cvs commit: apache/src CHANGES
dgaudet 97/06/28 15:04:36

Modified: src CHANGES
Log:
PR#353: fix problem with symlink -> directory with .htaccess disallowing
symlinks.

This fix was inadvertantly committed to http_request.c a few days ago.

Reviewed by: Brian

Revision Changes Path
1.305 +5 -0 apache/src/CHANGES

Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.304
retrieving revision 1.305
diff -C3 -r1.304 -r1.305
*** CHANGES 1997/06/28 21:58:42 1.304
--- CHANGES 1997/06/28 22:04:34 1.305
***************
*** 42,47 ****
--- 42,52 ----
for the net if we require people that actually need this data to
enable it. [Linus Torvalds]

+ *) CONFIG: If a symlink pointed to a directory then it would be disallowed
+ if it contained a .htaccess disallowing symlinks. This is contrary
+ to the rule that symlink permissions are tested with the symlink
+ options of the parent directory. [Dean Gaudet] PR#353
+
*) QUERY_STRING was unescaped in mod_include, it shouldn't be.
[Dean Gaudet] PR#644