conf: don't fail to start when there's no configuration file

This commit is contained in:
Daniel Eklöf 2019-07-22 18:21:25 +02:00
parent df91698ff3
commit b494f24552
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -362,6 +362,7 @@ config_load(struct config *conf)
if (path == NULL) {
/* Default conf */
LOG_WARN("no configuration found, using defaults");
ret = true;
goto out;
}