From b69bf7dd45ab5b7f2327ea0be9df064f5dd8a715 Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Fri, 7 Sep 2001 05:52:29 +0000 Subject: [PATCH] Fix error in Netware-specific code. (This really should be an APR function - if it isn't already...) Now I know why my editor was thinking this file was completed wacked w.r.t. braces. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90949 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index 3b67a9332b..ace26efe27 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -967,7 +967,7 @@ static int is_only_below(const char *path) return 0; #endif #ifdef NETWARE - if (strchr(path, ':') + if (strchr(path, ':')) return 0; #endif if (path[0] == '/') { -- 2.50.1