From a5436657e977e8157d7e79f390ec6081f00c1bce Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 8 Oct 2012 11:23:08 +0200 Subject: [PATCH] Starter ignores non-fatal errors when reloading config --- src/starter/starter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/starter/starter.c b/src/starter/starter.c index 9ba61205a..85197cd8b 100644 --- a/src/starter/starter.c +++ b/src/starter/starter.c @@ -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 */