From 09620c8795348941816427aea40883c1963626c3 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Fri, 29 Jan 2016 13:13:05 +0000 Subject: [PATCH] fix for wrong return check on ap_prep_lingering_close(), causing regressions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1727573 13f79535-47bb-0310-9956-ffa450edef68 --- server/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/connection.c b/server/connection.c index 0959b8550d..19745376db 100644 --- a/server/connection.c +++ b/server/connection.c @@ -126,7 +126,7 @@ AP_DECLARE(int) ap_start_lingering_close(conn_rec *c) return 1; } - if (!ap_prep_lingering_close(c)) { + if (ap_prep_lingering_close(c)) { return 1; } -- 2.40.0