You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2012/07/11 03:48:48 UTC

svn commit: r1359976 - /httpd/httpd/trunk/server/core.c

Author: covener
Date: Wed Jul 11 01:48:48 2012
New Revision: 1359976

URL: http://svn.apache.org/viewvc?rev=1359976&view=rev
Log:
r1052419 changed the default value of Options to FollowSymlinks, 
but inadvertently made "AllowOverride Options" behave like 
"AllowOverride Options=FollowSymLinks".

PR53444

Modified:
    httpd/httpd/trunk/server/core.c

Modified: httpd/httpd/trunk/server/core.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/core.c?rev=1359976&r1=1359975&r2=1359976&view=diff
==============================================================================
--- httpd/httpd/trunk/server/core.c (original)
+++ httpd/httpd/trunk/server/core.c Wed Jul 11 01:48:48 2012
@@ -1612,7 +1612,7 @@ static const char *set_override(cmd_parm
             if (v)
                 set_allow_opts(cmd, &(d->override_opts), v);
             else
-                d->override_opts = OPT_SYM_LINKS;
+                d->override_opts = OPT_ALL;
         }
         else if (!strcasecmp(w, "FileInfo")) {
             d->override |= OR_FILEINFO;