diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-09-04 16:23:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 16:23:31 +0200 |
commit | c9042b2890cd344c85186cb733dc1d8cbe411c7a (patch) | |
tree | 750745333b96b6b4d5a1a04d07706fd8d78b56d6 /lib/prefix.c | |
parent | Merge pull request #4874 from manuhalo/fix_isis_mtu (diff) | |
parent | zebra: Use dataplane for evpn neighbor changes (diff) | |
download | frr-c9042b2890cd344c85186cb733dc1d8cbe411c7a.tar.xz frr-c9042b2890cd344c85186cb733dc1d8cbe411c7a.zip |
Merge pull request #4877 from mjstapp/dplane_neighs
zebra: move evpn neighbors to dataplane
Diffstat (limited to 'lib/prefix.c')
-rw-r--r-- | lib/prefix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/prefix.c b/lib/prefix.c index ad8dea273..35b679ab9 100644 --- a/lib/prefix.c +++ b/lib/prefix.c @@ -441,7 +441,7 @@ void prefix_hexdump(const struct prefix *p) zlog_hexdump(p, sizeof(struct prefix)); } -int is_zero_mac(struct ethaddr *mac) +int is_zero_mac(const struct ethaddr *mac) { int i = 0; |