From: Justin Erenkrantz Date: Fri, 7 Sep 2001 05:52:29 +0000 (+0000) Subject: Fix error in Netware-specific code. X-Git-Tag: 2.0.26~294 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b69bf7dd45ab5b7f2327ea0be9df064f5dd8a715;p=apache 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 --- 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] == '/') {