From 6e9594c220027cdf5390cdb347f7b76bde891df8 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Wed, 11 Sep 2024 13:04:51 +0000 Subject: [PATCH] Windows: fix "Include" of UNC paths ... 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 | 2 ++ server/core.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changes-entries/pr69313.txt diff --git a/changes-entries/pr69313.txt b/changes-entries/pr69313.txt new file mode 100644 index 00000000000..25b3126c1da --- /dev/null +++ b/changes-entries/pr69313.txt @@ -0,0 +1,2 @@ + *) Windows: Restore the ability to "Include" configuration files on UNC + paths. PR69313 [Eric Covener] diff --git a/server/core.c b/server/core.c index 9f92981ef0d..09eb5aa6f0c 100644 --- a/server/core.c +++ b/server/core.c @@ -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