diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-11-27 13:34:13 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-11-27 13:34:13 +0000 |
commit | 96dd8af8e6e1f5525cce3dcb33c040a73e67f2c6 (patch) | |
tree | 7cfd92bc5c8894795bdb19a9ddf183538000e067 /src/http/ngx_http_request.c | |
parent | 9683528550836a35cb24c61bf3fd99175bcbd82f (diff) | |
download | nginx-96dd8af8e6e1f5525cce3dcb33c040a73e67f2c6.tar.gz nginx-96dd8af8e6e1f5525cce3dcb33c040a73e67f2c6.zip |
proxy_pass variables support
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index e3988ff22..e63418306 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -2649,7 +2649,7 @@ ngx_http_log_error_handler(ngx_http_request_t *r, ngx_http_request_t *sr, #endif p = ngx_snprintf(buf, len, ", upstream: \"%V%V%s%V\"", - &u->conf->schema, u->peer.name, + &u->schema, u->peer.name, uri_separator, &u->uri); len -= p - buf; buf = p; |