From 3064919617195642e1ffc52fac375b05ec961a27 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 5 Nov 2019 19:33:04 +0100 Subject: [PATCH] Don't fail to start MeshLink if some host config files couldn't be read. --- src/net_setup.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/net_setup.c b/src/net_setup.c index e1db743a..aeceb1f8 100644 --- a/src/net_setup.c +++ b/src/net_setup.c @@ -402,10 +402,7 @@ bool setup_myself(meshlink_handle_t *mesh) { graph(mesh); - if(!config_scan_all(mesh, "current", "hosts", load_node, NULL)) { - meshlink_errno = MESHLINK_ESTORAGE; - return false; - } + config_scan_all(mesh, "current", "hosts", load_node, NULL); /* Open sockets */ -- 2.39.2