]> granicus.if.org Git - apache/commitdiff
Added NETWARE to the #ifdef list
authorBradley Nicholes <bnicholes@apache.org>
Mon, 29 Oct 2001 22:56:42 +0000 (22:56 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 29 Oct 2001 22:56:42 +0000 (22:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91691 13f79535-47bb-0310-9956-ffa450edef68

server/log.c

index 7bd99b017e2a85a996b1f2e026fc1ae19e828365..e2f3280a95d579025d8c0280d218d14fe08648c0 100644 (file)
@@ -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