diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-11 11:02:36 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-11 11:02:36 +0000 |
commit | ecd822809da990698d0bb48848cf8232d7170b04 (patch) | |
tree | ee5a24e4c81e550d3455c8248957c42173a007a0 /src/http/ngx_http_core_module.h | |
parent | 9ce893b13b9cfa2038a1ad13975bb6af69bd809d (diff) | |
download | nginx-ecd822809da990698d0bb48848cf8232d7170b04.tar.gz nginx-ecd822809da990698d0bb48848cf8232d7170b04.zip |
try_files status code
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r-- | src/http/ngx_http_core_module.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h index e1692fd03..8b1db54a2 100644 --- a/src/http/ngx_http_core_module.h +++ b/src/http/ngx_http_core_module.h @@ -267,7 +267,9 @@ typedef struct { ngx_array_t *lengths; ngx_array_t *values; ngx_str_t name; - ngx_uint_t test_dir; /* unsigned test_dir:1; */ + + unsigned code:10; + unsigned test_dir:1; } ngx_http_try_file_t; |