1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 10:43:13 +02:00

core, plugins: replace calls to strcmp by string_strcmp when difference matters (issue #1872)

This commit is contained in:
Sébastien Helleu
2023-01-27 21:50:04 +01:00
parent fbeab26a35
commit 3e9e1b51bf
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -507,7 +507,7 @@ alias_find_pos (const char *name)
for (ptr_alias = alias_list; ptr_alias; ptr_alias = ptr_alias->next_alias)
{
if (strcmp (name, ptr_alias->name) < 0)
if (weechat_strcmp (name, ptr_alias->name) < 0)
return ptr_alias;
}