summaryrefslogtreecommitdiff
path: root/sysdep
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-07-12 21:39:10 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-08-03 10:34:16 +0200
commitdf09a5dbf2c6e9b971aa30f80969487f922d6ee0 (patch)
treed3f495b4f2fa7faabd6c95028e7a76801457d95c /sysdep
parent824de84d48eff6cbd0c550309fbd0bbf7740cb14 (diff)
Fixes missing check in reconfiguration.
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/unix/krt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c
index 419bdd94..562dc717 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)
;