diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2019-08-07 20:53:06 -0300 |
|---|---|---|
| committer | Renato Westphal <renato@opensourcerouting.org> | 2019-09-06 20:58:09 -0300 |
| commit | be489c57389c1da495acbb9c4df9e59eeb34648c (patch) | |
| tree | 208ff353501a7564228103ab551a07079623301b /zebra/zebra_mpls.c | |
| parent | e29f8d0db320284d6516354efc5daafc41dfb67e (diff) | |
zebra: add missing case statement in nhlfe2str()
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_mpls.c')
| -rw-r--r-- | zebra/zebra_mpls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zebra_mpls.c b/zebra/zebra_mpls.c index 19b0e41b39..7018a0a778 100644 --- a/zebra/zebra_mpls.c +++ b/zebra/zebra_mpls.c @@ -1112,6 +1112,7 @@ static char *nhlfe2str(zebra_nhlfe_t *nhlfe, char *buf, int size) inet_ntop(AF_INET, &nexthop->gate.ipv4, buf, size); break; case NEXTHOP_TYPE_IPV6: + case NEXTHOP_TYPE_IPV6_IFINDEX: inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf, size); break; case NEXTHOP_TYPE_IFINDEX: |
