summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/wee-command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index 28b6926e5..cbdb79456 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -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++;