diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-07-12 21:39:10 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-07-12 21:39:10 +0200 |
commit | f038f0a6385d7b81f57254e3c9bf84021a6b040d (patch) | |
tree | 90d3a179ff22d9f141d9707b442ae1d97c77d8b9 /sysdep/unix | |
parent | 9be9a264137cdd881f339c37d1a1918527924254 (diff) | |
download | bird-f038f0a6385d7b81f57254e3c9bf84021a6b040d.tar bird-f038f0a6385d7b81f57254e3c9bf84021a6b040d.zip |
Fixes missing check in reconfiguration.
Diffstat (limited to 'sysdep/unix')
-rw-r--r-- | sysdep/unix/krt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index 419bdd9..562dc71 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) ; |