From 3b30a901b43c11c83ac598e0954c3c33a89d78fd Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 25 Dec 2003 20:26:58 +0000 Subject: nginx-0.0.1-2003-12-25-23:26:58 import --- src/http/ngx_http_log_handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 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 ecdd07954..8b4c76358 100644 --- a/src/http/ngx_http_log_handler.c +++ b/src/http/ngx_http_log_handler.c @@ -470,14 +470,14 @@ static char *ngx_http_log_header_out(ngx_http_request_t *r, char *buf, && ngx_strncasecmp(s->data, "Connection", s->len) == 0) { op->op = ngx_http_log_connection_header_out; - op->data = NULL; + op->data = (uintptr_t) NULL; return NULL; } if (s->len == sizeof("Transfer-Encoding") - 1 && ngx_strncasecmp(s->data, "Transfer-Encoding", s->len) == 0) { op->op = ngx_http_log_transfer_encoding_header_out; - op->data = NULL; + op->data = (uintptr_t) NULL; return NULL; } -- cgit v1.2.3