summaryrefslogtreecommitdiff
path: root/src/core/channels-setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/channels-setup.c')
-rw-r--r--src/core/channels-setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/channels-setup.c b/src/core/channels-setup.c
index 9e2908a8..e1289c23 100644
--- a/src/core/channels-setup.c
+++ b/src/core/channels-setup.c
@@ -102,7 +102,7 @@ CHANNEL_SETUP_REC *channel_setup_find(const char *channel,
for (tmp = setupchannels; tmp != NULL; tmp = tmp->next) {
CHANNEL_SETUP_REC *rec = tmp->data;
- if (g_strcasecmp(rec->name, channel) == 0 &&
+ if (g_ascii_strcasecmp(rec->name, channel) == 0 &&
channel_chatnet_match(rec->chatnet, chatnet))
return rec;
}