Mercurial > audlegacy
changeset 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 | c2dc7a3a7240 |
children | ae3ed045e5aa 06079e59fc4b |
files | src/audacious/input.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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) {