From: Ondrej Zajicek Date: Mon, 12 Jul 2010 19:39:10 +0000 (+0200) Subject: Fixes missing check in reconfiguration. X-Git-Tag: v1.3.0~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f038f0a6385d7b81f57254e3c9bf84021a6b040d;p=thirdparty%2Fbird.git Fixes missing check in reconfiguration. --- diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index 419bdd941..562dc7174 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -901,6 +901,7 @@ krt_reconfigure(struct proto *p, struct proto_config *new) return o->scan_time == n->scan_time && o->learn == n->learn /* persist needn't be the same */ + && o->devroutes == n->devroutes && krt_set_params_same(&o->set, &n->set) && krt_scan_params_same(&o->scan, &n->scan) ;