# HG changeset patch # User Igor Sysoev # Date 1202380693 0 # Node ID 4ca7c40af92399e741ae934eb1c9df0268c5f75d # Parent 10ab4a7f92fef8e1e62e92af9531d47f5b3e1366 fix order diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -113,9 +113,6 @@ static ngx_conf_enum_t ngx_http_core_sa }; -static ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " }; - - #if (NGX_HTTP_GZIP) static ngx_conf_enum_t ngx_http_gzip_http_version[] = { @@ -655,6 +652,9 @@ ngx_module_t ngx_http_core_module = { }; +static ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " }; + + void ngx_http_handler(ngx_http_request_t *r) {