Commit 1f6dbe2e authored by Bradley Nicholes's avatar Bradley Nicholes
Browse files

Added NETWARE to the #ifdef list


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91691 13f79535-47bb-0310-9956-ffa450edef68
parent 2f0958fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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