summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-01-12 14:32:28 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-01-12 14:32:28 +0000
commitdff49792ed69f61077eec67531deb7dd771348b2 (patch)
tree0747e57f6b10e395edc0d8514c47fad8dfd9cb3a /src/core
parentea4323a1b6035e9a979d851c09b2261aa4946071 (diff)
downloadirssi-dff49792ed69f61077eec67531deb7dd771348b2.zip
Settings names are now case-insensitive.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2314 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core')
-rw-r--r--src/core/settings.c4
1 files changed, 2 insertions, 2 deletions
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;