aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/TagConfig.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-20 23:09:51 +0200
committerMax Kellermann <max@duempel.org>2013-10-20 23:09:51 +0200
commit0e4d2e7277bc2adf18dd1e719ec4ce684f86d72b (patch)
tree181aa272821ace382565b3c3465949101b98e253 /src/tag/TagConfig.cxx
parent2bbff77e489ae72a332b18b122844bd761d75764 (diff)
downloadmpd-0e4d2e7277bc2adf18dd1e719ec4ce684f86d72b.tar.gz
mpd-0e4d2e7277bc2adf18dd1e719ec4ce684f86d72b.tar.xz
mpd-0e4d2e7277bc2adf18dd1e719ec4ce684f86d72b.zip
Util/ASCII: add function StringEqualsCaseASCII()
Replaces GLib's g_ascii_strcasecmp().
Diffstat (limited to 'src/tag/TagConfig.cxx')
-rw-r--r--src/tag/TagConfig.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tag/TagConfig.cxx b/src/tag/TagConfig.cxx
index 9e47cd05b..96fd1847f 100644
--- a/src/tag/TagConfig.cxx
+++ b/src/tag/TagConfig.cxx
@@ -24,6 +24,7 @@
#include "ConfigGlobal.hxx"
#include "ConfigOption.hxx"
#include "system/FatalError.hxx"
+#include "util/ASCII.hxx"
#include <glib.h>
@@ -40,7 +41,7 @@ TagLoadConfig()
std::fill_n(ignore_tag_items, TAG_NUM_OF_ITEM_TYPES, true);
- if (0 == g_ascii_strcasecmp(value, "none"))
+ if (StringEqualsCaseASCII(value, "none"))
return;
bool quit = false;