diff options
Diffstat (limited to 'src/core/ngx_connection.c')
-rw-r--r-- | src/core/ngx_connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c index 2e3466954..8a8f84a59 100644 --- a/src/core/ngx_connection.c +++ b/src/core/ngx_connection.c @@ -467,7 +467,7 @@ ngx_configure_listening_socket(ngx_cycle_t *cycle) } } - if (ls->add_deferred) { + if (ls->add_deferred) { ls->deferred_accept = 1; } @@ -625,11 +625,11 @@ ngx_close_connection(ngx_connection_t *c) if (c->read->timer_set) { ngx_del_timer(c->read); } - + if (c->write->timer_set) { ngx_del_timer(c->write); } - + if (ngx_del_conn) { ngx_del_conn(c, NGX_CLOSE_EVENT); |