diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2002-02-06 22:13:28 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2002-02-06 22:13:28 +0100 |
commit | e8ad3e9a9d1940df1009d28593e3dc0e4dbf19d4 (patch) | |
tree | 652f5f922fa1d4458e74f14daf664b24c0209cf3 /server/log.c | |
parent | If we only need to toggle the event, don't ask for the whole ball 'o wax. (diff) | |
download | apache2-e8ad3e9a9d1940df1009d28593e3dc0e4dbf19d4.tar.xz apache2-e8ad3e9a9d1940df1009d28593e3dc0e4dbf19d4.zip |
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
Diffstat (limited to 'server/log.c')
-rw-r--r-- | server/log.c | 2 |
1 files changed, 0 insertions, 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(); |