From: Igor Sysoev Date: Wed, 9 Jan 2008 15:27:27 +0000 (+0000) Subject: fix building by gcc42, etc. introduced in r1858 X-Git-Tag: release-0.6.26~29 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=66b8ad6b08b799f77c6b9aa438051a7e92275517;p=nginx.git fix building by gcc42, etc. introduced in r1858 --- diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 68e7891ac..574e92542 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -113,7 +113,7 @@ static ngx_conf_enum_t ngx_http_core_satisfy[] = { }; -static ngx_str_t ngx_http_core_get_method = { 3, "GET " }; +static ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " }; #if (NGX_HTTP_GZIP)