From: Evgeny Kotkov Date: Mon, 10 Jul 2017 12:22:31 +0000 (+0000) Subject: mpm_winnt: Following up on r1801144, use the new accept_filter_e enum X-Git-Tag: 2.5.0-alpha~297 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=751964ab98cdaf01f1177d299e51a6cfd8476431;p=apache mpm_winnt: Following up on r1801144, use the new accept_filter_e enum values in a couple of missed places in winnt_accept(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1801456 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 510db83f00..375391e6ee 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -520,7 +520,7 @@ reinit: /* target of connect upon too many AcceptEx failures */ "winnt_mpm: falling back to " "'AcceptFilter none'."); err_count = 0; - accf = 0; + accf = ACCEPT_FILTER_NONE; } continue; } @@ -537,7 +537,7 @@ reinit: /* target of connect upon too many AcceptEx failures */ "winnt_mpm: falling back to " "'AcceptFilter none'."); err_count = 0; - accf = 0; + accf = ACCEPT_FILTER_NONE; goto reinit; } continue;