diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-10-24 16:10:38 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-10-24 16:10:38 +0000 |
commit | 6414b96ebc50f42bf878aa84839921ab0aa9f4df (patch) | |
tree | 145c6488055c4f703eb8e326064ccb85b526935f /src/http/ngx_http_request.c | |
parent | 12b4b00784bbc3cd934e2f2bbee79679684629e3 (diff) | |
download | nginx-6414b96ebc50f42bf878aa84839921ab0aa9f4df.tar.gz nginx-6414b96ebc50f42bf878aa84839921ab0aa9f4df.zip |
nginx-0.0.1-2003-10-24-20:10:38 import
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 0778c6679..33402938c 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -322,6 +322,7 @@ static void ngx_http_process_request_line(ngx_event_t *rev) return; } + /* copy URI */ if (r->args_start) { @@ -339,7 +340,6 @@ static void ngx_http_process_request_line(ngx_event_t *rev) ngx_cpystrn(r->uri.data, r->uri_start, r->uri.len + 1); -#if 1 /* THINK: needed to log url on errors in proxy only ? */ /* copy unparsed URI */ @@ -354,7 +354,6 @@ static void ngx_http_process_request_line(ngx_event_t *rev) ngx_cpystrn(r->unparsed_uri.data, r->uri_start, r->unparsed_uri.len + 1); -#endif r->request_line.len = r->request_end - r->request_start; |