commit | 6645e76e38cc9e4a0aad2d8e1a1d5ce66b9fca91 | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Fri Oct 17 12:36:48 2008 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Fri Oct 17 12:36:48 2008 +0000 |
tree | 11cd4b153b129d6e6af1b89221ba4e43470d181c | |
parent | ad1e123bfae5dcfd44ff82d12e59b4af58b2f8cf [diff] |
fix server_addr value known from configuration, bug introduced in r2199
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index dd76b99..f220368 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c
@@ -1631,6 +1631,10 @@ } r->in_addr = sin.sin_addr.s_addr; + + } else { + sin.sin_family = c->sockaddr->sa_family; + sin.sin_addr.s_addr = r->in_addr; } if (s == NULL) {