exit when unable to read config file

This commit is contained in:
reenoo
2003-12-25 14:03:40 +00:00
parent 8c5e8edfcf
commit fa46a3e1ff
+2 -1
View File
@@ -400,7 +400,8 @@ process_configfile ( char *configfile )
/* Read server settings*/
if( config_read_file( configfile ) != 0 ) {
report( RPT_WARNING, "Could not read config file: %s", configfile );
report( RPT_CRIT, "Could not read config file: %s", configfile );
return -1;
}
if( bind_port == UNSET_INT )