1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 20:06:38 +02:00

core: make hashtable types case sensitive (issue #1872)

This commit is contained in:
Sébastien Helleu
2023-01-21 20:21:59 +01:00
parent fca78ca823
commit 411fe0b0ef
+1 -1
View File
@@ -60,7 +60,7 @@ hashtable_get_type (const char *type)
for (i = 0; i < HASHTABLE_NUM_TYPES; i++)
{
if (string_strcasecmp (hashtable_type_string[i], type) == 0)
if (strcmp (hashtable_type_string[i], type) == 0)
return i;
}