From 2a9ce6263164bedc4db70e0ad9fc6591605e38b0 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 18 May 2009 12:58:19 +0000 Subject: use ngx_connection_local_sockaddr() instead of ngx_http_server_addr() --- src/http/modules/ngx_http_userid_filter_module.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/http/modules') diff --git a/src/http/modules/ngx_http_userid_filter_module.c b/src/http/modules/ngx_http_userid_filter_module.c index 5ffb1d02b..3462f649c 100644 --- a/src/http/modules/ngx_http_userid_filter_module.c +++ b/src/http/modules/ngx_http_userid_filter_module.c @@ -390,12 +390,13 @@ ngx_http_userid_set_uid(ngx_http_request_t *r, ngx_http_userid_ctx_t *ctx, } else { if (conf->service == NGX_CONF_UNSET) { - if (ngx_http_server_addr(r, NULL) != NGX_OK) { - return NGX_ERROR; - } c = r->connection; + if (ngx_connection_local_sockaddr(c, NULL, 0) != NGX_OK) { + return NGX_ERROR; + } + switch (c->local_sockaddr->sa_family) { #if (NGX_HAVE_INET6) -- cgit