From 78c58934124977c36392bc0794e3d41837d4b0ee Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 29 May 2007 16:33:34 +0000 Subject: [PATCH] fix segfault --- src/core/ngx_connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.47.3