summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_variables.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-07-07 10:24:25 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-07-07 10:24:25 +0000
commit4108a9614d7cdf95dbce6afb8ba67ae9c188e907 (patch)
tree4610b1fffd5797a7dff5b45de26a0349e2a1abeb /src/http/ngx_http_variables.h
parentc410db96b9103d30a33a7f16f3ede58265d63bab (diff)
downloadnginx-4108a9614d7cdf95dbce6afb8ba67ae9c188e907.tar.gz
nginx-4108a9614d7cdf95dbce6afb8ba67ae9c188e907.tar.bz2
r2009 merge:
escape 0x00-0x1f, ", and \ in access log variables
Diffstat (limited to '')
-rw-r--r--src/http/ngx_http_variables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_variables.h b/src/http/ngx_http_variables.h
index 58046411f..bc2d10035 100644
--- a/src/http/ngx_http_variables.h
+++ b/src/http/ngx_http_variables.h
@@ -16,7 +16,7 @@
typedef ngx_variable_value_t ngx_http_variable_value_t;
-#define ngx_http_variable(v) { sizeof(v) - 1, 1, 0, 0, (u_char *) v }
+#define ngx_http_variable(v) { sizeof(v) - 1, 1, 0, 0, 0, (u_char *) v }
typedef struct ngx_http_variable_s ngx_http_variable_t;