Mercurial > audlegacy
diff src/audacious/input.c @ 4782:792338a0f6ce
Replace g_strncasecmp with g_ascii_strncasecmp.
| author | Tony Vroon <chainsaw@gentoo.org> |
|---|---|
| date | Fri, 26 Sep 2008 21:57:28 +0100 |
| parents | 1f03f17e263e |
| children | 9b9bcf252a10 |
line wrap: on
line diff
--- a/src/audacious/input.c Fri Sep 26 21:46:42 2008 +0100 +++ b/src/audacious/input.c Fri Sep 26 21:57:28 2008 +0100 @@ -412,8 +412,8 @@ // apply ext_hash check if(cfg.use_extension_probing) { use_ext_filter = - (fd && (!g_strncasecmp(filename_proxy, "/", 1) || - !g_strncasecmp(filename_proxy, "file://", 7))) ? TRUE : FALSE; + (fd && (!g_ascii_strncasecmp(filename_proxy, "/", 1) || + !g_ascii_strncasecmp(filename_proxy, "file://", 7))) ? TRUE : FALSE; } if(use_ext_filter) {
