]> git.kaiwu.me - nginx.git/commitdiff
fix order
authorIgor Sysoev <igor@sysoev.ru>
Thu, 7 Feb 2008 10:38:13 +0000 (10:38 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Thu, 7 Feb 2008 10:38:13 +0000 (10:38 +0000)
src/http/ngx_http_core_module.c

index 84d8cc1f58fd088dca6f978ebac7466a3dcfa4c8..8a9a4769d59ef0bdec7a5ba0b914215f7c733e71 100644 (file)
@@ -113,9 +113,6 @@ static ngx_conf_enum_t  ngx_http_core_satisfy[] = {
 };
 
 
-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)
 {