From: Eric Covener Date: Wed, 11 Jul 2012 01:48:48 +0000 (+0000) Subject: r1052419 changed the default value of Options to FollowSymlinks, X-Git-Tag: 2.5.0-alpha~6662 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e21f3952f8edba0fae39c644c4030f828fb54ae;p=apache r1052419 changed the default value of Options to FollowSymlinks, 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 --- diff --git a/server/core.c b/server/core.c index 541f6e8e74..c7a9df061d 100644 --- a/server/core.c +++ b/server/core.c @@ -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;