comparison src/http/modules/ngx_http_log_module.c @ 3238:415400fa0f10 stable-0.7

merge r2920, r2934, r3116, r3119: style fixes
author Igor Sysoev <igor@sysoev.ru>
date Mon, 26 Oct 2009 16:06:11 +0000
parents 2efa8d2fcde1
children eef19bd3c51e
comparison
equal deleted inserted replaced
3237:2efa8d2fcde1 3238:415400fa0f10
674 674
675 if (dst == NULL) { 675 if (dst == NULL) {
676 676
677 /* find the number of the characters to be escaped */ 677 /* find the number of the characters to be escaped */
678 678
679 n = 0; 679 n = 0;
680 680
681 for (i = 0; i < size; i++) { 681 for (i = 0; i < size; i++) {
682 if (escape[*src >> 5] & (1 << (*src & 0x1f))) { 682 if (escape[*src >> 5] & (1 << (*src & 0x1f))) {
683 n++; 683 n++;
684 } 684 }