Don't treat a non-existant/-readable config file as an empty config, but

use the compiled in _BB_SUID_* flags (same as for parse errors)
This commit is contained in:
Robert Griebl 2002-07-16 21:53:59 +00:00
parent 0fe3e62e2c
commit e4f9f3a960

View File

@ -392,10 +392,11 @@ int parse_config_file ( void )
parse_error ( "keyword not within section" );
}
fclose ( f );
return 1;
}
}
}
return 1;
return 0; // no config file or not readable (not an error)
pe_label:
fprintf ( stderr, "Parse error in %s, line %d: %s\n", CONFIG_FILE, lc, err );