diff options
Diffstat (limited to 'src/core/log.c')
-rw-r--r-- | src/core/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/log.c b/src/core/log.c index fb035c3b..bc0e869f 100644 --- a/src/core/log.c +++ b/src/core/log.c @@ -55,7 +55,7 @@ static int log_item_str2type(const char *type) int n; for (n = 0; log_item_types[n] != NULL; n++) { - if (g_strcasecmp(log_item_types[n], type) == 0) + if (g_ascii_strcasecmp(log_item_types[n], type) == 0) return n; } |