1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 14:56:39 +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
@@ -1661,7 +1661,7 @@ plugin_api_infolist_plugin_cb (const void *pointer, void *data,
ptr_plugin = ptr_plugin->next_plugin)
{
if (!arguments || !arguments[0]
|| string_match (ptr_plugin->name, arguments, 0))
|| string_match (ptr_plugin->name, arguments, 1))
{
if (!plugin_add_to_infolist (ptr_infolist, ptr_plugin))
{