comparison src/http/ngx_http_header_filter_module.c @ 2091:9f15e5f8ff9e stable-0.6

r2007, r2025, r2042 merge: style fixes
author Igor Sysoev <igor@sysoev.ru>
date Mon, 07 Jul 2008 10:18:41 +0000
parents 0d9c6fe7502b
children 65cff41e9a4e
comparison
equal deleted inserted replaced
2090:72b09c4dd8f7 2091:9f15e5f8ff9e
535 if (header[i].hash == 0) { 535 if (header[i].hash == 0) {
536 continue; 536 continue;
537 } 537 }
538 538
539 b->last = ngx_copy(b->last, header[i].key.data, header[i].key.len); 539 b->last = ngx_copy(b->last, header[i].key.data, header[i].key.len);
540 *b->last++ = ':' ; *b->last++ = ' ' ; 540 *b->last++ = ':'; *b->last++ = ' ';
541 541
542 b->last = ngx_copy(b->last, header[i].value.data, header[i].value.len); 542 b->last = ngx_copy(b->last, header[i].value.data, header[i].value.len);
543 *b->last++ = CR; *b->last++ = LF; 543 *b->last++ = CR; *b->last++ = LF;
544 } 544 }
545 545