]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Use OK status to match process_connection behaviour.
authorGraham Leggett <minfrin@apache.org>
Sat, 22 Jan 2022 18:54:37 +0000 (18:54 +0000)
committerGraham Leggett <minfrin@apache.org>
Sat, 22 Jan 2022 18:54:37 +0000 (18:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897352 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/mod_ssl.c

index 1a0b8c9fc2660177f8b3ef39fd3c344846c46639..1714380df8df960cba2b799cdc319aa1b9353b65 100644 (file)
@@ -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 {