Update version number for next release

Allow the config files to be symlinks
This commit is contained in:
duncan_ferguson 2009-03-09 19:04:38 +00:00
parent 26f1230589
commit f9068cba2b
4 changed files with 4 additions and 3 deletions

View file

@ -242,7 +242,7 @@ sub load_config_defaults() {
sub parse_config_file($) {
my $config_file = shift;
logmsg( 2, "Reading in from config file $config_file" );
return if ( !-f $config_file );
return if ( !-e $config_file !-r $config_file );
open( CFG, $config_file ) or die("Couldnt open $config_file: $!");
while (<CFG>) {