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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user