Hide errors caused by old splash plugin for the time being

This commit is contained in:
Roy Marples 2007-09-18 16:57:39 +00:00
parent 5ba4ad52e2
commit 1996a1e032

View File

@ -319,8 +319,11 @@ char **rc_get_config (const char *file)
char *entry;
char *newline;
if (! file)
return (NULL);
if (! (fp = fopen (file, "r"))) {
ewarn ("load_config_file `%s': %s", file, strerror (errno));
ewarn ("rc_get_config `%s': %s", file, strerror (errno));
return (NULL);
}