Starter ignores non-fatal errors when reloading config

This commit is contained in:
Tobias Brunner 2012-10-08 11:23:08 +02:00
parent 9e730ef9df
commit a5436657e9
1 changed files with 1 additions and 1 deletions

View File

@ -626,7 +626,7 @@ int main (int argc, char **argv)
DBG2(DBG_APP, "Reloading config...");
new_cfg = confread_load(CONFIG_FILE);
if (new_cfg && (new_cfg->err + new_cfg->non_fatal_err == 0))
if (new_cfg && (new_cfg->err == 0))
{
/* Switch to new config. New conn will be loaded below */