From 1149aa977d906a6400f998d5f6600871584395d0 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Mon, 5 May 2014 11:05:12 +0200 Subject: [PATCH] Fixes a problem with undoing of deconfiguring of protocol. Thanks to Sergey Popovich for the original patch. --- nest/proto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nest/proto.c b/nest/proto.c index 6278580c..7a1e9bf7 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -605,6 +605,7 @@ proto_rethink_goal(struct proto *p) { struct proto_config *nc = p->cf_new; DBG("%s has shut down for reconfiguration\n", p->name); + p->cf->proto = NULL; config_del_obstacle(p->cf->global); rem_node(&p->n); rem_node(&p->glob_node);