]> granicus.if.org Git - apache/commitdiff
Removed the #ifdef NETWARE to allow the standard abort() function to
authorBradley Nicholes <bnicholes@apache.org>
Wed, 6 Feb 2002 21:13:28 +0000 (21:13 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Wed, 6 Feb 2002 21:13:28 +0000 (21:13 +0000)
be called.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93314 13f79535-47bb-0310-9956-ffa450edef68

server/log.c

index c5faec7c103a4610edce9f13d5aedf3b079e54e4..b2cf12163de9268a400689c565c13f77ad078aa3 100644 (file)
@@ -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();