diff options
Diffstat (limited to 'src/os/unix/ngx_recv.c')
-rw-r--r-- | src/os/unix/ngx_recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_recv.c b/src/os/unix/ngx_recv.c index 60e2d099f..3c454e98c 100644 --- a/src/os/unix/ngx_recv.c +++ b/src/os/unix/ngx_recv.c @@ -32,7 +32,7 @@ ssize_t ngx_unix_recv(ngx_connection_t *c, char *buf, size_t size) ngx_set_socket_errno(rev->kq_errno); if (rev->kq_errno == NGX_ECONNRESET - && rev->log_error == NGX_ERROR_IGNORE_ECONNRESET) + && c->log_error == NGX_ERROR_IGNORE_ECONNRESET) { return 0; } |