]> granicus.if.org Git - apache/commitdiff
r1052419 changed the default value of Options to FollowSymlinks,
authorEric Covener <covener@apache.org>
Wed, 11 Jul 2012 01:48:48 +0000 (01:48 +0000)
committerEric Covener <covener@apache.org>
Wed, 11 Jul 2012 01:48:48 +0000 (01:48 +0000)
but inadvertently made "AllowOverride Options" behave like
"AllowOverride Options=FollowSymLinks".

PR53444

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1359976 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index 541f6e8e74af5017d79ec3da2b9ceddfa01c2fec..c7a9df061d82cda62885cfabb44bbdeb68ad0fcb 100644 (file)
@@ -1612,7 +1612,7 @@ static const char *set_override(cmd_parms *cmd, void *d_, const char *l)
             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;