diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-14 22:15:01 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-14 22:15:01 +0100 |
commit | 8396094156c2ddae279ec9c265100e28acb65a8d (patch) | |
tree | f5ffdeadf906dfcfdcf8c600c2f362aa3d9adc16 /nest | |
parent | 1e8721e2aeccfbc3f533e8b8abc07582cee77e9a (diff) |
Minor cleanups
Diffstat (limited to 'nest')
-rw-r--r-- | nest/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/config.Y b/nest/config.Y index f51be6ea..358c7745 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -227,7 +227,7 @@ proto_item: | IMPORT LIMIT limit_spec { this_proto->in_limit = $3; } | EXPORT LIMIT limit_spec { this_proto->out_limit = $3; } | IMPORT KEEP FILTERED bool { this_proto->in_keep_filtered = $4; } - | VRF TEXT { this_proto->vrf = if_get_by_name($2); } + | VRF text { this_proto->vrf = if_get_by_name($2); } | TABLE rtable { this_proto->table = $2; } | ROUTER ID idval { this_proto->router_id = $3; } | DESCRIPTION text { this_proto->dsc = $2; } |