diff options
author | Maria Matejka <mq@ucw.cz> | 2021-11-15 10:53:58 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-01-25 13:33:31 +0100 |
commit | 4334f86251429eb39bfe81ff19496d141fccef84 (patch) | |
tree | 2dce6e1833748b9b165ece7776afbcbb3fc7ddc3 /proto/babel/babel.c | |
parent | 72230d3ca37d34cafa0442c23f83121ae1fc41be (diff) |
VRF setting reduced to one argument, using default dummy iface for default vrf
Diffstat (limited to 'proto/babel/babel.c')
-rw-r--r-- | proto/babel/babel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/babel/babel.c b/proto/babel/babel.c index ff8b6b52..ad7981f6 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -1946,7 +1946,7 @@ babel_reconfigure_ifaces(struct babel_proto *p, struct babel_config *cf) WALK_LIST(iface, iface_list) { - if (p->p.vrf_set && p->p.vrf != iface->master) + if (p->p.vrf && p->p.vrf != iface->master) continue; if (!(iface->flags & IF_UP)) |