diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2008-07-07 10:24:25 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2008-07-07 10:24:25 +0000 |
| commit | 4108a9614d7cdf95dbce6afb8ba67ae9c188e907 (patch) | |
| tree | 4610b1fffd5797a7dff5b45de26a0349e2a1abeb /src/core/ngx_string.h | |
| parent | c410db96b9103d30a33a7f16f3ede58265d63bab (diff) | |
| download | nginx-4108a9614d7cdf95dbce6afb8ba67ae9c188e907.tar.gz nginx-4108a9614d7cdf95dbce6afb8ba67ae9c188e907.tar.bz2 | |
r2009 merge:
escape 0x00-0x1f, ", and \ in access log variables
Diffstat (limited to 'src/core/ngx_string.h')
| -rw-r--r-- | src/core/ngx_string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 00617f3b2..3514e52f3 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h @@ -25,11 +25,12 @@ typedef struct { typedef struct { - unsigned len:29; + unsigned len:28; unsigned valid:1; unsigned no_cacheable:1; unsigned not_found:1; + unsigned escape:1; u_char *data; } ngx_variable_value_t; |
