From: William A. Rowe Jr Date: Wed, 29 Nov 2000 18:18:58 +0000 (+0000) Subject: Eliminate the last WSAE error test. X-Git-Tag: moving_to_httpd_module~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b94e09585946a4062977dac859935d7b35257872;p=apache Eliminate the last WSAE error test. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87131 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index e10af947d2..5a4b36e594 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -737,7 +737,7 @@ static void accept_and_queue_connections(void * dummy) } while (csd < 0 && APR_STATUS_IS_EINTR(apr_get_netos_error())); if (csd < 0) { - if (apr_get_netos_error() == APR_FROM_OS_ERROR(WSAECONNABORTED)) { + if (APR_STATUS_IS_ECONNABORTED(apr_get_netos_error())) { ap_log_error(APLOG_MARK, APLOG_ERR, apr_get_netos_error(), server_conf, "accept: (client socket)"); }