comparison src/http/ngx_http_header_filter_module.c @ 2024:7018254cc006

style fix
author Igor Sysoev <igor@sysoev.ru>
date Thu, 22 May 2008 12:09:41 +0000
parents b9de93d804ea
children 115e6f029fcc
comparison
equal deleted inserted replaced
2023:7d58e319285e 2024:7018254cc006
534 if (header[i].hash == 0) { 534 if (header[i].hash == 0) {
535 continue; 535 continue;
536 } 536 }
537 537
538 b->last = ngx_copy(b->last, header[i].key.data, header[i].key.len); 538 b->last = ngx_copy(b->last, header[i].key.data, header[i].key.len);
539 *b->last++ = ':' ; *b->last++ = ' ' ; 539 *b->last++ = ':'; *b->last++ = ' ';
540 540
541 b->last = ngx_copy(b->last, header[i].value.data, header[i].value.len); 541 b->last = ngx_copy(b->last, header[i].value.data, header[i].value.len);
542 *b->last++ = CR; *b->last++ = LF; 542 *b->last++ = CR; *b->last++ = LF;
543 } 543 }
544 544