diff options
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf.c b/src/conf.c index 6f3c9ace7..608b4804b 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; |