From: Graham Leggett Date: Sat, 22 Jan 2022 18:54:37 +0000 (+0000) Subject: Use OK status to match process_connection behaviour. X-Git-Tag: 2.5.0-alpha2-ci-test-only~554 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=413c52c8e3df8476eeb6c8c42a565a5479ec7181;p=thirdparty%2Fapache%2Fhttpd.git Use OK status to match process_connection behaviour. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897352 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/mod_ssl.c b/modules/ssl/mod_ssl.c index 1a0b8c9fc26..1714380df8d 100644 --- a/modules/ssl/mod_ssl.c +++ b/modules/ssl/mod_ssl.c @@ -731,10 +731,10 @@ static int ssl_hook_process_connection(conn_rec* c) } else { /* we failed, give up */ - status = DONE; cs->state = CONN_STATE_LINGER; + status = OK; } } else {