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