1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 17:53:13 +02:00

core, plugins: make plugin names case sensitive (issue #1872)

This commit is contained in:
Sébastien Helleu
2023-01-15 20:29:45 +01:00
parent 4b5897f110
commit 5434f4f969
5 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -4810,7 +4810,7 @@ command_plugin_list (const char *name, int full)
for (ptr_plugin = weechat_plugins; ptr_plugin;
ptr_plugin = ptr_plugin->next_plugin)
{
if (!name || (string_strcasestr (ptr_plugin->name, name)))
if (!name || (strstr (ptr_plugin->name, name)))
{
plugins_found++;