1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-05 05:30:39 +03:00

PR49823: Make the hardcoded default for AllowOverride match the default config -- None.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1031776 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2010-11-05 20:21:09 +00:00
parent 65074610e7
commit 433c97df4e
3 changed files with 5 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ static void *create_core_dir_config(apr_pool_t *a, char *dir)
conf->opts = dir ? OPT_UNSET : OPT_UNSET|OPT_ALL;
conf->opts_add = conf->opts_remove = OPT_NONE;
conf->override = dir ? OR_UNSET : OR_UNSET|OR_ALL;
conf->override = OR_NONE;
conf->override_opts = OPT_UNSET | OPT_ALL | OPT_SYM_OWNER | OPT_MULTI;
conf->content_md5 = 2;