diff options
author | Stefan Eissing <icing@apache.org> | 2016-01-29 14:13:05 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2016-01-29 14:13:05 +0100 |
commit | 09620c8795348941816427aea40883c1963626c3 (patch) | |
tree | dc9f85832744474398fc45b0145089a2ae34ee69 /server/connection.c | |
parent | * Transform the buckets to the correct lifetime of the brigade, connection an... (diff) | |
download | apache2-09620c8795348941816427aea40883c1963626c3.tar.xz apache2-09620c8795348941816427aea40883c1963626c3.zip |
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
Diffstat (limited to 'server/connection.c')
-rw-r--r-- | server/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |