]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Begone, foul tabs.
authorGraham Leggett <minfrin@apache.org>
Mon, 24 Jan 2022 16:20:07 +0000 (16:20 +0000)
committerGraham Leggett <minfrin@apache.org>
Mon, 24 Jan 2022 16:20:07 +0000 (16:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897424 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/mod_ssl.c
server/mpm/event/event.c

index 40b83a8709f1cde7d80dc5c05f95a0d646e15b93..2489aa5ca810a5bcddb2bf0733d73538f4f8863d 100644 (file)
@@ -735,7 +735,7 @@ static int ssl_hook_process_connection(conn_rec* c)
                 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(10371)
                               "SSL handshake in progress, continuing");
 
-               status = AGAIN;
+                status = AGAIN;
             }
             else if (rv == AP_FILTER_ERROR) {
                 /* handshake error, but mod_ssl handled it */
@@ -743,7 +743,7 @@ static int ssl_hook_process_connection(conn_rec* c)
                 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(10372)
                               "SSL handshake failed, returning error response");
 
-               status = DECLINED;
+                status = DECLINED;
             }
             else {
                 /* we failed, give up */
index 11443dea7ac34d1359edc51338a5aeabaaaaa305..c7509ba6a8545f3dfee110c75d25f9c8fe950f0d 100644 (file)
@@ -985,12 +985,12 @@ static void process_lingering_close(event_conn_state_t *cs);
 
 static void update_reqevents_from_sense(event_conn_state_t *cs, int sense)
 {
-       /* has the desired sense been overridden? */
-       if (cs->pub.sense != CONN_SENSE_DEFAULT) {
-               sense = cs->pub.sense;
-       }
+    /* has the desired sense been overridden? */
+    if (cs->pub.sense != CONN_SENSE_DEFAULT) {
+        sense = cs->pub.sense;
+    }
 
-       /* read or write */
+    /* read or write */
     if (sense == CONN_SENSE_WANT_READ) {
         cs->pfd.reqevents = APR_POLLIN | APR_POLLHUP;
     }