X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fnet.c;h=863dd762c326c885312a88d703f157f2ae4fc0ed;hb=268c8545aaf83b7433f43402f5c77e39e20006ef;hp=295546df6068a5e63e2c4701d2d5c56d94f4a650;hpb=19be9cf7150858311f7898fa3fb525d692d02f64;p=tinc diff --git a/src/net.c b/src/net.c index 295546df..863dd762 100644 --- a/src/net.c +++ b/src/net.c @@ -341,9 +341,10 @@ int reload_configuration(void) { void retry(void) { connection_t *c; - splay_node_t *node; + splay_node_t *node, *next; - for(node = connection_tree->head; node; node = node->next) { + for(node = connection_tree->head; node; node = next) { + next = node->next; c = node->data; if(c->outgoing && !c->node) {