diff options
author | Eric Covener <covener@apache.org> | 2024-09-11 15:04:51 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2024-09-11 15:04:51 +0200 |
commit | 6e9594c220027cdf5390cdb347f7b76bde891df8 (patch) | |
tree | cd69d6d1eaf1c41e25c570a97a093b9f3afc334a /server | |
parent | CI: Update to OpenSSL 3.1.7/3.3.2. (diff) | |
download | apache2-6e9594c220027cdf5390cdb347f7b76bde891df8.tar.xz apache2-6e9594c220027cdf5390cdb347f7b76bde891df8.zip |
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
Diffstat (limited to 'server')
-rw-r--r-- | server/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/core.c b/server/core.c index 9f92981ef0..09eb5aa6f0 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 |