From c47733bb185aa1d83e249c214cf63a938edb09db Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Mon, 10 May 2004 19:30:43 +0000 Subject: [PATCH] Fix the wildcard includes on NetWare by calling opendir() with the original pattern. Otherwise NetWare returns a single directory entry rather than the directory contents. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@103640 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/http_config.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/http_config.c b/src/main/http_config.c index 48396143288..6f56d4971c9 100644 --- a/src/main/http_config.c +++ b/src/main/http_config.c @@ -1228,7 +1228,11 @@ CORE_EXPORT(void) ap_process_resource_config(server_rec *s, char *fname, pool *p * for this. */ fprintf(stderr, "Processing config directory: %s\n", fname); +#ifdef NETWARE + dirp = ap_popendir(p, fname); +#else dirp = ap_popendir(p, path); +#endif if (dirp == NULL) { perror("fopen"); fprintf(stderr, "%s: could not open config directory %s\n", -- 2.47.2