aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-11-27 13:34:13 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-11-27 13:34:13 +0000
commit96dd8af8e6e1f5525cce3dcb33c040a73e67f2c6 (patch)
tree7cfd92bc5c8894795bdb19a9ddf183538000e067 /src/http/ngx_http_request.c
parent9683528550836a35cb24c61bf3fd99175bcbd82f (diff)
downloadnginx-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.c2
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;