From b494f245529eae339bd7754c6da6dab03ac47420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 22 Jul 2019 18:21:25 +0200 Subject: [PATCH] conf: don't fail to start when there's no configuration file --- config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/config.c b/config.c index 5791db4c..77ce70b1 100644 --- a/config.c +++ b/config.c @@ -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; }