(partial) fix to ITS#3570: detect an error condition; the error is yet to be fixed

This commit is contained in:
Pierangelo Masarati 2005-02-27 18:05:22 +00:00
parent d7a5355176
commit f93aec341c

View File

@ -805,7 +805,8 @@ read_config(const char *fname, int depth) {
}
i = init_config_attrs(SystemConfiguration);
if ( i ) return i;
config_back_init( &cf_prv, SystemConfiguration );
i = config_back_init( &cf_prv, SystemConfiguration );
if ( i ) return i;
return read_config_file(fname, depth, NULL);
}