diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-05-15 15:09:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-05-15 15:09:39 +0000 |
commit | 5f3521cf4f433155868f23a1ebfa801177c69084 (patch) | |
tree | 59ab76eb505a175c6114da5044d6c5b5a578563f /src/http/ngx_http_variables.h | |
parent | 5fd0931a611c112265d7d11a448cf26ffb542aad (diff) | |
download | nginx-5f3521cf4f433155868f23a1ebfa801177c69084.tar.gz nginx-5f3521cf4f433155868f23a1ebfa801177c69084.zip |
escape 0x00-0x1f, ", and \ in access log variables
Diffstat (limited to 'src/http/ngx_http_variables.h')
-rw-r--r-- | src/http/ngx_http_variables.h | 2 |
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; |