]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add a Changes entry related to r1917017
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 19 Jan 2025 10:59:10 +0000 (10:59 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 19 Jan 2025 10:59:10 +0000 (10:59 +0000)
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

changes-entries/github 310.txt [new file with mode: 0644]
server/core.c

diff --git a/changes-entries/github 310.txt b/changes-entries/github 310.txt
new file mode 100644 (file)
index 0000000..2d966cd
--- /dev/null
@@ -0,0 +1,3 @@
+  *) core: Report invalid Options= argument when parsing AllowOverride
+     directives.
+     Github #310 [Zhou Qingyang <zhou1615 umn.edu>]
index 09eb5aa6f0c74f80601b2d7f1ad543383b365340..96b0841a78e26e67c863f357c1aa972c09350c6b 100644 (file)
@@ -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;
         }