comparison src/http/modules/ngx_http_log_module.c @ 3115:204ea173234f

style fix
author Igor Sysoev <igor@sysoev.ru>
date Fri, 11 Sep 2009 13:57:50 +0000
parents cd8738e76610
children b344b68da8c5
comparison
equal deleted inserted replaced
3114:1c4fcfe57af1 3115:204ea173234f
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 }