summaryrefslogtreecommitdiffstats
path: root/nest/proto.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-04-25 23:56:46 +0200
committerMartin Mares <mj@ucw.cz>2000-04-25 23:56:46 +0200
commit41b26cfb552a4a441490779344326ff85819252b (patch)
tree998a18c38ffcd7faa411387fca0d33633e48e0e9 /nest/proto.c
parent99f70c78e11f99f73a142ffcb8b65bd142c0a36c (diff)
downloadbird-41b26cfb552a4a441490779344326ff85819252b.tar
bird-41b26cfb552a4a441490779344326ff85819252b.zip
Don't forget to set filter pointers in struct proto when reconfiguring.
Diffstat (limited to 'nest/proto.c')
-rw-r--r--nest/proto.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c
index abf4a3c..da3f14c 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -231,6 +231,8 @@ protos_commit(struct config *new, struct config *old, int force_reconfig)
PD(p, "Reconfigured");
p->cf = nc;
p->name = nc->name;
+ p->in_filter = nc->in_filter;
+ p->out_filter = nc->out_filter;
nc->proto = p;
continue;
}