diff options
author | Mitesh Kanjariya <mitesh@cumulusnetworks.com> | 2017-10-08 03:49:27 +0200 |
---|---|---|
committer | Mitesh Kanjariya <mitesh@marvel-07.cumulusnetworks.com> | 2017-12-14 19:56:44 +0100 |
commit | b7cfce934fc04185d2f51252843cd611ddaac16a (patch) | |
tree | 586d63f100b1ad962a9d96c306c564f363f7bc0e /lib/prefix.c | |
parent | Merge pull request #1554 from opensourcerouting/cover-fix1 (diff) | |
download | frr-b7cfce934fc04185d2f51252843cd611ddaac16a.tar.xz frr-b7cfce934fc04185d2f51252843cd611ddaac16a.zip |
zebra, lib: zebra changes for symmetric routing support
Signed-off-by: Mitesh Kanjariya <mitesh@cumulusnetworks.com>
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 10f77bda8..f1c25d24d 100644 --- a/lib/prefix.c +++ b/lib/prefix.c @@ -301,7 +301,7 @@ static const struct in6_addr maskbytes6[] = { #define MASKBIT(offset) ((0xff << (PNBBY - (offset))) & 0xff) -static int is_zero_mac(const struct ethaddr *mac) +int is_zero_mac(struct ethaddr *mac) { int i = 0; |