# HG changeset patch # User Igor Sysoev # Date 1211640406 0 # Node ID bff8689c695319ec0fb573fcc78274759ab91c54 # Parent f321b59ae0e9e4684eee233c0027814712c8d76e move configuration phase only field to the end of structure diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h --- 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