From 8c61c4d21e5de2854888af0c04a209f049a98fcc Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Mon, 29 Oct 2001 22:56:42 +0000 Subject: [PATCH] Added NETWARE to the #ifdef list git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91691 13f79535-47bb-0310-9956-ffa450edef68 --- server/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/log.c b/server/log.c index 7bd99b017e..e2f3280a95 100644 --- a/server/log.c +++ b/server/log.c @@ -564,7 +564,7 @@ AP_DECLARE(void) ap_log_assert(const char *szExp, const char *szFile, int nLine) ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "[%s] file %s, line %d, assertion \"%s\" failed", time_str, szFile, nLine, szExp); -#ifndef WIN32 +#if !defined(WIN32) && !defined(NETWARE) /* unix assert does an abort leading to a core dump */ abort(); #else -- 2.40.0