comparison src/http/ngx_http_log_handler.c @ 195:8dee38ea9117

nginx-0.0.1-2003-11-25-23:44:56 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Nov 2003 20:44:56 +0000
parents a8ff48d26cca
children 0b67be7d4489
comparison
equal deleted inserted replaced
194:2357fa41738a 195:8dee38ea9117
248 248
249 249
250 static char *ngx_http_log_length(ngx_http_request_t *r, char *buf, 250 static char *ngx_http_log_length(ngx_http_request_t *r, char *buf,
251 uintptr_t data) 251 uintptr_t data)
252 { 252 {
253 return buf + ngx_snprintf(buf, NGX_OFF_LEN + 1, OFF_FMT, 253 return buf + ngx_snprintf(buf, NGX_OFF_LEN + 1, OFF_T_FMT,
254 r->connection->sent); 254 r->connection->sent);
255 } 255 }
256 256
257 257
258 static char *ngx_http_log_header_in(ngx_http_request_t *r, char *buf, 258 static char *ngx_http_log_header_in(ngx_http_request_t *r, char *buf,