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/radv | |
parent | 72230d3ca37d34cafa0442c23f83121ae1fc41be (diff) |
VRF setting reduced to one argument, using default dummy iface for default vrf
Diffstat (limited to 'proto/radv')
-rw-r--r-- | proto/radv/radv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/radv/radv.c b/proto/radv/radv.c index 119a8dc4..8b547f6d 100644 --- a/proto/radv/radv.c +++ b/proto/radv/radv.c @@ -663,7 +663,7 @@ radv_reconfigure(struct proto *P, struct proto_config *CF) struct iface *iface; 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)) |