From: Guus Sliepen Date: Tue, 5 Nov 2019 18:33:04 +0000 (+0100) Subject: Don't fail to start MeshLink if some host config files couldn't be read. X-Git-Url: http://git.meshlink.io/?p=meshlink;a=commitdiff_plain;h=3064919617195642e1ffc52fac375b05ec961a27 Don't fail to start MeshLink if some host config files couldn't be read. --- 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 */