summaryrefslogtreecommitdiff
path: root/nest/config.Y
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2022-09-20 09:14:39 +0200
committerMaria Matejka <mq@ucw.cz>2022-09-20 09:14:39 +0200
commit28427a68c32d5684652dd22400a9143722294886 (patch)
tree874b81f35a54974ca79479e124f12fa04d143592 /nest/config.Y
parent29712c691d4f2cadb6517e3759bdf5e60b1fb4d9 (diff)
parentadf37d8eff8f281871295c402a51ae1dd654851c (diff)
Merge commit 'adf37d8e' into thread-next
Diffstat (limited to 'nest/config.Y')
-rw-r--r--nest/config.Y4
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/config.Y b/nest/config.Y
index 52f5aedb..a8e48cfe 100644
--- a/nest/config.Y
+++ b/nest/config.Y
@@ -294,8 +294,8 @@ proto_item:
| MRTDUMP mrtdump_mask { this_proto->mrtdump = $2; }
| ROUTER ID idval { this_proto->router_id = $3; }
| DESCRIPTION text { this_proto->dsc = $2; }
- | VRF text { this_proto->vrf = if_get_by_name($2); this_proto->vrf_set = 1; }
- | VRF DEFAULT { this_proto->vrf = NULL; this_proto->vrf_set = 1; }
+ | VRF text { this_proto->vrf = if_get_by_name($2); }
+ | VRF DEFAULT { this_proto->vrf = &default_vrf; }
;