diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-05-24 14:46:46 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-05-24 14:46:46 +0000 |
commit | 7e2c4eef9c2439a7c743a303305ecba616b7b376 (patch) | |
tree | 6b754ea0a52952ef0a7e3d471ebf25945adae92d | |
parent | e55988c06941931d60241fb40c7e878cf5484ddf (diff) | |
download | nginx-7e2c4eef9c2439a7c743a303305ecba616b7b376.tar.gz nginx-7e2c4eef9c2439a7c743a303305ecba616b7b376.zip |
move configuration phase only field to the end of structure
-rw-r--r-- | src/http/ngx_http_core_module.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h index ac743f37f..0bf96cb5b 100644 --- a/src/http/ngx_http_core_module.h +++ b/src/http/ngx_http_core_module.h @@ -244,8 +244,6 @@ struct ngx_http_core_loc_conf_s { unsigned auto_redirect:1; unsigned alias:1; - ngx_queue_t *locations; - ngx_http_location_tree_node_t *static_locations; ngx_http_core_loc_conf_t **regex_locations; @@ -328,6 +326,8 @@ struct ngx_http_core_loc_conf_s { ngx_uint_t types_hash_max_size; ngx_uint_t types_hash_bucket_size; + ngx_queue_t *locations; + #if 0 ngx_http_core_loc_conf_t *prev_location; #endif |