aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/TagConfig.cxx
diff options
context:
space:
mode:
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;