summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_log_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-10-26 16:06:11 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-10-26 16:06:11 +0000
commitf10b4e07a562f967c5de4d9e65f2a023dd2e7ada (patch)
tree29ba25e40ca4445ec3899caa71380f6979230c14 /src/http/modules/ngx_http_log_module.c
parentf7f963d7792fdf19ad11888d3a3e7460ea88dfd0 (diff)
downloadnginx-f10b4e07a562f967c5de4d9e65f2a023dd2e7ada.tar.gz
nginx-f10b4e07a562f967c5de4d9e65f2a023dd2e7ada.tar.bz2
merge r2920, r2934, r3116, r3119:
style fixes
Diffstat (limited to 'src/http/modules/ngx_http_log_module.c')
-rw-r--r--src/http/modules/ngx_http_log_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_log_module.c b/src/http/modules/ngx_http_log_module.c
index 170e3a264..1ff105821 100644
--- a/src/http/modules/ngx_http_log_module.c
+++ b/src/http/modules/ngx_http_log_module.c
@@ -676,7 +676,7 @@ ngx_http_log_escape(u_char *dst, u_char *src, size_t size)
/* find the number of the characters to be escaped */
- n = 0;
+ n = 0;
for (i = 0; i < size; i++) {
if (escape[*src >> 5] & (1 << (*src & 0x1f))) {