From: rettenbe Date: Mon, 24 Nov 2008 15:13:33 +0000 (+0000) Subject: Sections in config file are now case-INsensitive. Upper and lower case writing is... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=be57516cc5eee1db5e0fdd13f75fe99d43bcfa71;p=gosa.git Sections in config file are now case-INsensitive. Upper and lower case writing is acepted. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13019 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/modules/GosaSupportDaemon.pm b/gosa-si/modules/GosaSupportDaemon.pm index 2e971370a..5ee469df9 100644 --- a/gosa-si/modules/GosaSupportDaemon.pm +++ b/gosa-si/modules/GosaSupportDaemon.pm @@ -799,7 +799,7 @@ sub read_configfile { my $cfg; if( defined( $cfg_file) && ( (-s $cfg_file) > 0 )) { if( -r $cfg_file ) { - $cfg = Config::IniFiles->new( -file => $cfg_file ); + $cfg = Config::IniFiles->new( -file => $cfg_file, -nocase => 1 ); } else { print STDERR "Couldn't read config file!"; }