From 2c67e1a4f4eb102366d64d9b712d76598dd1b906 Mon Sep 17 00:00:00 2001
From: Steffen Vogel <post@steffenvogel.de>
Date: Sat, 16 Sep 2017 14:59:48 +0200
Subject: [PATCH] add missing call to node_init2()

---
 lib/super_node.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/super_node.c b/lib/super_node.c
index 6ab3ce01f..c4c66720a 100644
--- a/lib/super_node.c
+++ b/lib/super_node.c
@@ -361,8 +361,10 @@ int super_node_start(struct super_node *sn)
 		struct node *n = list_at(&sn->nodes, i);
 
 		int refs = list_count(&sn->paths, (cmp_cb_t) path_uses_node, n);
-		if (refs > 0)
+		if (refs > 0) {
+			node_init2(n);
 			node_start(n);
+		}
 		else
 			warn("No path is using the node %s. Skipping...", node_name(n));
 	}