1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-15 04:28:09 -04:00

Settings names are now case-insensitive.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2314 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-01-12 14:32:28 +00:00 committed by cras
parent ea4323a1b6
commit dff49792ed

View File

@ -632,8 +632,8 @@ static void sig_autosave(void)
void settings_init(void)
{
settings = g_hash_table_new((GHashFunc) g_str_hash,
(GCompareFunc) g_str_equal);
settings = g_hash_table_new((GHashFunc) g_istr_hash,
(GCompareFunc) g_istr_equal);
last_errors = NULL;
last_invalid_modules = NULL;