aboutsummaryrefslogtreecommitdiff
path: root/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.c')
-rw-r--r--src/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf.c b/src/conf.c
index 6f3c9ace..608b4804 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -59,11 +59,11 @@ static int get_bool(const char *value)
static const char *f[] = { "no", "false", "0", NULL };
for (x = t; *x; x++) {
- if (!strcasecmp(*x, value))
+ if (!g_ascii_strcasecmp(*x, value))
return 1;
}
for (x = f; *x; x++) {
- if (!strcasecmp(*x, value))
+ if (!g_ascii_strcasecmp(*x, value))
return 0;
}
return CONF_BOOL_INVALID;