From a88acc848e3d67bcb65bad614fa1de8ed041f310 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 14 Jun 2010 13:48:28 +0200 Subject: [PATCH] oss4: Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp() --- sys/oss4/oss4-mixer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/oss4/oss4-mixer.c b/sys/oss4/oss4-mixer.c index 6c6cd01..bc2d039 100644 --- a/sys/oss4/oss4-mixer.c +++ b/sys/oss4/oss4-mixer.c @@ -910,7 +910,7 @@ gst_oss4_mixer_control_get_translated_name (GstOss4MixerControl * mc) if (*ptr == '.') ptr++; for (i = 0; i < G_N_ELEMENTS (labels); ++i) { - if (g_strcasecmp (ptr, labels[i].oss_name) == 0) { + if (g_ascii_strcasecmp (ptr, labels[i].oss_name) == 0) { g_strlcpy (name, _(labels[i].label), sizeof (name)); goto append_suffixes; } @@ -943,7 +943,7 @@ gst_oss4_mixer_control_get_translated_option (const gchar * name) { int i; for (i = 0; i < G_N_ELEMENTS (labels); ++i) { - if (g_strcasecmp (name, labels[i].oss_name) == 0) { + if (g_ascii_strcasecmp (name, labels[i].oss_name) == 0) { return _(labels[i].label); } } -- 2.7.4