From e8ad3e9a9d1940df1009d28593e3dc0e4dbf19d4 Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Wed, 6 Feb 2002 21:13:28 +0000 Subject: [PATCH] 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 --- server/log.c | 2 -- 1 file changed, 2 deletions(-) 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(); -- 2.40.0