From: Ryan Bloom Date: Fri, 13 Oct 2000 17:36:51 +0000 (+0000) Subject: Add a #else back into http_core.c, so that this compiles on Unix again. X-Git-Tag: APACHE_2_0_ALPHA_8~375 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5ab7f6f10f5e5328d24992132bf41cad3939f16;p=apache Add a #else back into http_core.c, so that this compiles on Unix again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86580 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index d405e784ce..1eec56401a 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -422,6 +422,7 @@ CORE_EXPORT(void) ap_add_file_conf(core_dir_config *conf, void *url_config) || ((entry_core)->d[0] != '/' \ && strchr((entry_core)->d, ':') \ && *(strchr((entry_core)->d, ':') + 1) != '/')) +#else #define IS_SPECIAL(entry_core) \ ((entry_core)->r != NULL || (entry_core)->d[0] != '/') #endif