]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Windows: fix "Include" of UNC paths
authorEric Covener <covener@apache.org>
Wed, 11 Sep 2024 13:04:51 +0000 (13:04 +0000)
committerEric Covener <covener@apache.org>
Wed, 11 Sep 2024 13:04:51 +0000 (13:04 +0000)
... by making UNCList EXEC_ON_READ (since Include is EXEC_ON_READ)

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

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

diff --git a/changes-entries/pr69313.txt b/changes-entries/pr69313.txt
new file mode 100644 (file)
index 0000000..25b3126
--- /dev/null
@@ -0,0 +1,2 @@
+  *) Windows: Restore the ability to "Include" configuration files on UNC
+     paths. PR69313 [Eric Covener]
index 9f92981ef0ddaf3f1aab6c10fd95cb7db199d094..09eb5aa6f0c74f80601b2d7f1ad543383b365340 100644 (file)
@@ -4801,7 +4801,7 @@ AP_INIT_TAKE1("FlushMaxPipelined", set_flush_max_pipelined, NULL, RSRC_CONF,
   "Maximum number of pipelined responses (pending) above which they are "
   "flushed to the network"),
 #ifdef WIN32
-AP_INIT_TAKE_ARGV("UNCList", set_unc_list, NULL, RSRC_CONF,
+AP_INIT_TAKE_ARGV("UNCList", set_unc_list, NULL, RSRC_CONF|EXEC_ON_READ,
   "Controls what UNC hosts may be looked up"),
 #endif