From: Christophe Jaillet Date: Sun, 19 Jan 2025 10:59:10 +0000 (+0000) Subject: Add a Changes entry related to r1917017 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3431795597704a9ed6bf42f6a4ce7c66910cebf1;p=thirdparty%2Fapache%2Fhttpd.git Add a Changes entry related to r1917017 While at it, fix a small style issue (tab vs spaces) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1923218 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/changes-entries/github 310.txt b/changes-entries/github 310.txt new file mode 100644 index 0000000000..2d966cd488 --- /dev/null +++ b/changes-entries/github 310.txt @@ -0,0 +1,3 @@ + *) core: Report invalid Options= argument when parsing AllowOverride + directives. + Github #310 [Zhou Qingyang ] diff --git a/server/core.c b/server/core.c index 09eb5aa6f0..96b0841a78 100644 --- a/server/core.c +++ b/server/core.c @@ -1909,7 +1909,7 @@ static const char *set_override(cmd_parms *cmd, void *d_, const char *l) if (v) { if ((err = set_allow_opts(cmd, &(d->override_opts), v)) != NULL) return err; - } + } else d->override_opts = OPT_ALL; }