# HG changeset patch # User Tony Vroon # Date 1222462648 -3600 # Node ID 792338a0f6cec8b31a14aba8c4b6a33aecbdf2a4 # Parent c2dc7a3a724006449d46154f38ae2ea5966e731a Replace g_strncasecmp with g_ascii_strncasecmp. diff -r c2dc7a3a7240 -r 792338a0f6ce src/audacious/input.c --- 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) {