aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_log_handler.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-12-25 20:26:58 +0000
committerIgor Sysoev <igor@sysoev.ru>2003-12-25 20:26:58 +0000
commit3b30a901b43c11c83ac598e0954c3c33a89d78fd (patch)
treed3cb44de69fa95516be20a38bc14cea0324e8200 /src/http/ngx_http_log_handler.c
parentfc68ea6f7bedd491126ef57110b6362e9af8900f (diff)
downloadnginx-3b30a901b43c11c83ac598e0954c3c33a89d78fd.tar.gz
nginx-3b30a901b43c11c83ac598e0954c3c33a89d78fd.zip
nginx-0.0.1-2003-12-25-23:26:58 import
Diffstat (limited to 'src/http/ngx_http_log_handler.c')
-rw-r--r--src/http/ngx_http_log_handler.c4
1 files changed, 2 insertions, 2 deletions
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;
}