From: Bradley Nicholes Date: Wed, 6 Feb 2002 21:13:28 +0000 (+0000) Subject: Removed the #ifdef NETWARE to allow the standard abort() function to X-Git-Tag: 2.0.32~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8ad3e9a9d1940df1009d28593e3dc0e4dbf19d4;p=apache Removed the #ifdef NETWARE to allow the standard abort() function to be called. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93314 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/log.c b/server/log.c index c5faec7c10..b2cf12163d 100644 --- a/server/log.c +++ b/server/log.c @@ -583,8 +583,6 @@ AP_DECLARE(void) ap_log_assert(const char *szExp, const char *szFile, time_str, szFile, nLine, szExp); #if defined(WIN32) DebugBreak(); -#elif defined(NETWARE) - exit(1); #else /* unix assert does an abort leading to a core dump */ abort();