From a81a383053c2569f878fd67d7f172e45ce7156a1 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 25 Jun 2010 13:17:33 +0000 Subject: [PATCH] fix building without IPv6 after the previous commit --- src/http/modules/ngx_http_userid_filter_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/modules/ngx_http_userid_filter_module.c b/src/http/modules/ngx_http_userid_filter_module.c index 5177decf1..412a1370e 100644 --- a/src/http/modules/ngx_http_userid_filter_module.c +++ b/src/http/modules/ngx_http_userid_filter_module.c @@ -476,10 +476,10 @@ static ngx_int_t ngx_http_userid_create_uid(ngx_http_request_t *r, ngx_http_userid_ctx_t *ctx, ngx_http_userid_conf_t *conf) { - u_char *p; ngx_connection_t *c; struct sockaddr_in *sin; #if (NGX_HAVE_INET6) + u_char *p; struct sockaddr_in6 *sin6; #endif