diff options
Diffstat (limited to 'src/http/ngx_http_variables.h')
-rw-r--r-- | src/http/ngx_http_variables.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/http/ngx_http_variables.h b/src/http/ngx_http_variables.h index df487e48e..1dc982844 100644 --- a/src/http/ngx_http_variables.h +++ b/src/http/ngx_http_variables.h @@ -14,15 +14,7 @@ #include <ngx_http.h> -typedef struct { - unsigned len:29; - - unsigned valid:1; - unsigned no_cachable:1; - unsigned not_found:1; - - u_char *data; -} ngx_http_variable_value_t; +typedef ngx_variable_value_t ngx_http_variable_value_t; #define ngx_http_variable(v) { sizeof(v) - 1, 1, 0, 0, (u_char *) v } |