mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
relay: make relay compression case sensitive (issue #1872)
This commit is contained in:
@@ -61,7 +61,7 @@ relay_weechat_compression_search (const char *compression)
|
||||
|
||||
for (i = 0; i < RELAY_WEECHAT_NUM_COMPRESSIONS; i++)
|
||||
{
|
||||
if (weechat_strcasecmp (relay_weechat_compression_string[i], compression) == 0)
|
||||
if (strcmp (relay_weechat_compression_string[i], compression) == 0)
|
||||
return i;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user