Skip to content

Commit

Permalink
Windows: fix "Include" of UNC paths
Browse files Browse the repository at this point in the history
... 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
  • Loading branch information
covener committed Sep 11, 2024
1 parent c72b74c commit 6e9594c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changes-entries/pr69313.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*) Windows: Restore the ability to "Include" configuration files on UNC
paths. PR69313 [Eric Covener]
2 changes: 1 addition & 1 deletion server/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6e9594c

Please sign in to comment.