diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2008-02-07 10:38:13 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2008-02-07 10:38:13 +0000 |
| commit | 88b2406f4909de1040be0d597b51cf5edd556244 (patch) | |
| tree | 01ef82fd8d1fbb9f0c9f7d80fce8788a66d08588 /src | |
| parent | d2d673a8f9b07f786b7b7594f7392ca4ad57f1b2 (diff) | |
| download | nginx-88b2406f4909de1040be0d597b51cf5edd556244.tar.gz nginx-88b2406f4909de1040be0d597b51cf5edd556244.tar.bz2 | |
fix order
Diffstat (limited to 'src')
| -rw-r--r-- | src/http/ngx_http_core_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 84d8cc1f5..8a9a4769d 100644 --- 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_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) { |
