diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-15 17:41:21 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-28 15:13:54 +0100 |
commit | 489c26420220627a606805ead43a2bdc4d5545c1 (patch) | |
tree | 65c6aa2989f23611e16ceef75ec858184cf26955 /src/plugins/tcl/weechat-tcl.c | |
parent | 5bd97b9630f0e6ab9046c9b68c164bff7f2d1972 (diff) | |
download | weechat-489c26420220627a606805ead43a2bdc4d5545c1.zip |
core, plugins: make info, info_hashtable and infolist case sensitive (issue #1872)
Diffstat (limited to 'src/plugins/tcl/weechat-tcl.c')
-rw-r--r-- | src/plugins/tcl/weechat-tcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/tcl/weechat-tcl.c b/src/plugins/tcl/weechat-tcl.c index 637bf0502..57d95539e 100644 --- a/src/plugins/tcl/weechat-tcl.c +++ b/src/plugins/tcl/weechat-tcl.c @@ -795,7 +795,7 @@ weechat_tcl_infolist_cb (const void *pointer, void *data, if (!infolist_name || !infolist_name[0]) return NULL; - if (weechat_strcasecmp (infolist_name, "tcl_script") == 0) + if (weechat_strcmp (infolist_name, "tcl_script") == 0) { return plugin_script_infolist_list_scripts (weechat_tcl_plugin, tcl_scripts, obj_pointer, |