summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2022-01-24 16:20:07 +0000
committerGraham Leggett <minfrin@apache.org>2022-01-24 16:20:07 +0000
commite4368dc666a32057723ffeb7dc6a078ace6c6f77 (patch)
tree29de5750ec3020fc2dfffcebcd2cfa167b6841c7
parent3c6a7074916ea1b6b448e2c2c196de65f878efea (diff)
downloadhttpd-e4368dc666a32057723ffeb7dc6a078ace6c6f77.tar.gz
Begone, foul tabs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897424 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/ssl/mod_ssl.c4
-rw-r--r--server/mpm/event/event.c10
2 files changed, 7 insertions, 7 deletions
diff --git a/modules/ssl/mod_ssl.c b/modules/ssl/mod_ssl.c
index 40b83a8709..2489aa5ca8 100644
--- a/modules/ssl/mod_ssl.c
+++ b/modules/ssl/mod_ssl.c
@@ -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 */
diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c
index 11443dea7a..c7509ba6a8 100644
--- a/server/mpm/event/event.c
+++ b/server/mpm/event/event.c
@@ -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;
}