From dff49792ed69f61077eec67531deb7dd771348b2 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 12 Jan 2002 14:32:28 +0000 Subject: Settings names are now case-insensitive. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2314 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/settings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core') diff --git a/src/core/settings.c b/src/core/settings.c index 24ebeee1..7ded9ae2 100644 --- a/src/core/settings.c +++ b/src/core/settings.c @@ -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; -- cgit v1.2.3