diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-05-21 07:01:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-21 07:01:40 -0400 |
| commit | 080bfc6530b4a21678bad19015cae2ab41aa3d86 (patch) | |
| tree | b5b4b065152178d5f9c20a5fe359216031f301a2 /lib/command.c | |
| parent | edb2c56c1918365ae0a5bc8887d16876093ba090 (diff) | |
| parent | f6dfa24739832d332c80e4aa5f878080a3bd97a7 (diff) | |
Merge pull request #6432 from opensourcerouting/bfd-profiles
bfdd: support pre configured peer profiles
Diffstat (limited to 'lib/command.c')
| -rw-r--r-- | lib/command.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/command.c b/lib/command.c index d8a2270bc5..c9715965aa 100644 --- a/lib/command.c +++ b/lib/command.c @@ -836,6 +836,9 @@ enum node_type node_parent(enum node_type node) case BFD_PEER_NODE: ret = BFD_NODE; break; + case BFD_PROFILE_NODE: + ret = BFD_NODE; + break; default: ret = CONFIG_NODE; break; |
