summaryrefslogtreecommitdiff
path: root/src/core/chat-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/chat-commands.c')
-rw-r--r--src/core/chat-commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/chat-commands.c b/src/core/chat-commands.c
index c128439d..535bf9f8 100644
--- a/src/core/chat-commands.c
+++ b/src/core/chat-commands.c
@@ -178,7 +178,7 @@ static RECONNECT_REC *find_reconnect_server(int chat_type,
if (rec->conn->chat_type == chat_type) {
count++; last_proto_match = rec;
- if (g_strcasecmp(rec->conn->address, addr) == 0) {
+ if (g_ascii_strcasecmp(rec->conn->address, addr) == 0) {
if (rec->conn->port == port)
return rec;
match = rec;