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