init: Do not abort on invalid (re-)configurations

This commit is contained in:
Norman Feske 2013-09-04 22:23:37 +02:00
parent cc975f26c4
commit 511a655efb

View File

@ -254,7 +254,7 @@ int main(int, char **)
parent_services.remove_all(); parent_services.remove_all();
/* reload config */ /* reload config */
config()->reload(); try { config()->reload(); } catch (...) { }
} }
return 0; return 0;