From 89690bfe02703853c3e987d1e5c4d9878c4d28f0 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 23 Mar 2004 06:01:52 +0000 Subject: nginx-0.0.3-2004-03-23-09:01:52 import --- src/http/ngx_http_log_handler.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/http/ngx_http_log_handler.c') diff --git a/src/http/ngx_http_log_handler.c b/src/http/ngx_http_log_handler.c index 3edb55b54..908d6fcdf 100644 --- a/src/http/ngx_http_log_handler.c +++ b/src/http/ngx_http_log_handler.c @@ -327,8 +327,8 @@ static u_char *ngx_http_log_unknown_header_in(ngx_http_request_t *r, s = (ngx_str_t *) data; - h = r->headers_in.headers->elts; - for (i = 0; i < r->headers_in.headers->nelts; i++) { + h = r->headers_in.headers.elts; + for (i = 0; i < r->headers_in.headers.nelts; i++) { if (h[i].key.len != s->len) { continue; } @@ -535,8 +535,8 @@ static u_char *ngx_http_log_unknown_header_out(ngx_http_request_t *r, s = (ngx_str_t *) data; - h = r->headers_out.headers->elts; - for (i = 0; i < r->headers_out.headers->nelts; i++) { + h = r->headers_out.headers.elts; + for (i = 0; i < r->headers_out.headers.nelts; i++) { if (h[i].key.len != s->len) { continue; } -- cgit