aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-05-29 16:33:34 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-05-29 16:33:34 +0000
commit78c58934124977c36392bc0794e3d41837d4b0ee (patch)
tree7268b34dc76a94635e4e0352b82cc7b7b2b7b3bc /src
parente60303cdcaddf120a81ddb2a3a921f553af75705 (diff)
downloadnginx-78c58934124977c36392bc0794e3d41837d4b0ee.tar.gz
nginx-78c58934124977c36392bc0794e3d41837d4b0ee.zip
fix segfault
Diffstat (limited to 'src')
-rw-r--r--src/core/ngx_connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c
index 9afb95248..b9f7264c7 100644
--- a/src/core/ngx_connection.c
+++ b/src/core/ngx_connection.c
@@ -406,7 +406,7 @@ ngx_configure_listening_socket(ngx_cycle_t *cycle)
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
"changing the listen() backlog to %d "
"for %V failed, ignored",
- &ls[i].addr_text, ls[i].backlog);
+ ls[i].backlog, &ls[i].addr_text);
}
}