diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-05 03:38:11 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-05 03:38:11 +0200 |
commit | 9f95a33ad0a751b09baa3b7f4707b437934e45ca (patch) | |
tree | 4457265a6b5226eac11ed21e45ee660d459808c0 /bfdd/bfdd.c | |
parent | Merge pull request #4456 from opensourcerouting/workflow-update (diff) | |
download | frr-9f95a33ad0a751b09baa3b7f4707b437934e45ca.tar.xz frr-9f95a33ad0a751b09baa3b7f4707b437934e45ca.zip |
bfdd: Modify bfdd to quietly accept access-lists
The `access-list ...` command was causing bfdd to return
'unknown commands'. Make bfdd at least cognizant of
access-lists enough to not create strange error messages
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bfdd/bfdd.c')
-rw-r--r-- | bfdd/bfdd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfdd/bfdd.c b/bfdd/bfdd.c index 218f0883c..e26ed3376 100644 --- a/bfdd/bfdd.c +++ b/bfdd/bfdd.c @@ -20,6 +20,8 @@ #include <zebra.h> +#include "filter.h" + #include "bfd.h" #include "lib/version.h" @@ -202,6 +204,8 @@ int main(int argc, char *argv[]) bfd_vrf_init(); + access_list_init(); + /* Initialize zebra connection. */ bfdd_zclient_init(&bglobal.bfdd_privs); |