summaryrefslogtreecommitdiff
path: root/src/core/modules.c
diff options
context:
space:
mode:
authorDavid Hill <dhill@conformal.com>2014-06-10 12:06:19 -0400
committerDavid Hill <dhill@conformal.com>2014-06-10 12:06:19 -0400
commit0d4f13d20f304927277ad327c714481bc97de48f (patch)
tree0cea195e9fae20e3e10d48c5c829b0e894bdd492 /src/core/modules.c
parent5ca9287182092530dc206fa1af13fbe19cc357d1 (diff)
downloadirssi-0d4f13d20f304927277ad327c714481bc97de48f.zip
Replace deprecated g_str[n]casecmp with g_ascii_str[n]cmp.
Diffstat (limited to 'src/core/modules.c')
-rw-r--r--src/core/modules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/modules.c b/src/core/modules.c
index 6dfbd5f8..b002819b 100644
--- a/src/core/modules.c
+++ b/src/core/modules.c
@@ -237,7 +237,7 @@ MODULE_REC *module_find(const char *name)
for (tmp = modules; tmp != NULL; tmp = tmp->next) {
MODULE_REC *rec = tmp->data;
- if (g_strcasecmp(rec->name, name) == 0)
+ if (g_ascii_strcasecmp(rec->name, name) == 0)
return rec;
}