From 751964ab98cdaf01f1177d299e51a6cfd8476431 Mon Sep 17 00:00:00 2001 From: Evgeny Kotkov Date: Mon, 10 Jul 2017 12:22:31 +0000 Subject: [PATCH] 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 --- server/mpm/winnt/child.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1