aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_parse.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-11-23 20:20:23 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-11-23 20:20:23 +0000
commit95ead461116278d1f0cfd006526eb1bc1d81d09c (patch)
treecc453e82d6b3003f96a24592ec0eb0df50a48d2f /src/http/ngx_http_parse.c
parentb1ee81d7cdfc656e36c5ac791910b1fa19efe825 (diff)
downloadnginx-95ead461116278d1f0cfd006526eb1bc1d81d09c.tar.gz
nginx-95ead461116278d1f0cfd006526eb1bc1d81d09c.zip
use host part in URL
Diffstat (limited to 'src/http/ngx_http_parse.c')
-rw-r--r--src/http/ngx_http_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c
index b9022bdce..b141000b6 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -260,7 +260,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
case sw_schema_slash_slash:
switch (ch) {
case '/':
- r->host_start = p;
+ r->host_start = p + 1;
state = sw_host;
break;
default: