Oops. Shouldn't have done that little part. If the config file doesn't

exist, it's not necessarily an error.


SVN revision: 991
This commit is contained in:
Michael Jennings 1999-10-26 16:17:24 +00:00
parent 607ee975fe
commit cc45df368c
1 changed files with 1 additions and 7 deletions

View File

@ -3899,13 +3899,7 @@ Epplet_load_config(void)
memset(config_dict, 0, sizeof(ConfigDict));
if ((f = fopen(epplet_cfg_file, "r")) == NULL)
{
char err[255];
sprintf(err, "Unable to open config file %s for reading -- %s.\n", s, strerror(errno));
Epplet_dialog_ok(err);
return;
}
return;
*s2 = 0;
for (; fgets(s, sizeof(s), f);)
{