]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix the wildcard includes on NetWare by calling opendir() with the original pattern...
authorBradley Nicholes <bnicholes@apache.org>
Mon, 10 May 2004 19:30:43 +0000 (19:30 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 10 May 2004 19:30:43 +0000 (19:30 +0000)
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

index 4839614328878e064b6a4e2eb84ccc03bd546ca4..6f56d4971c915d495fd2eb8832f7caa8ed0308f8 100644 (file)
@@ -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",