changeset 1882:4ca7c40af923

fix order
author Igor Sysoev <igor@sysoev.ru>
date Thu, 07 Feb 2008 10:38:13 +0000
parents 10ab4a7f92fe
children 09dfe92b9414
files src/http/ngx_http_core_module.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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)
 {