| commit | 722231f40788d1243bf302227ed7b6fdfeaea492 | [log] [tgz] |
|---|---|---|
| author | Igor Sysoev <igor@sysoev.ru> | Wed Feb 14 18:51:19 2007 +0000 |
| committer | Igor Sysoev <igor@sysoev.ru> | Wed Feb 14 18:51:19 2007 +0000 |
| tree | f408767af10da88546a8d2b518601aef67ffdfb0 | |
| parent | 0ddd9d6e5ebe8cf3fddaf5f017992f0740dd7996 [diff] [blame] |
ngx_strcasecmp()/ngx_strncasecmp()
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index 5286000..79d372c 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c
@@ -2313,7 +2313,7 @@ while (*++p == ' ') { /* void */ } - if (ngx_strncasecmp(p, "charset=", 8) != 0) { + if (ngx_strncasecmp(p, (u_char *) "charset=", 8) != 0) { continue; }