diff options
| author | Pat Ruddy <pat@voltanet.io> | 2020-08-12 13:01:22 +0100 |
|---|---|---|
| committer | Pat Ruddy <pat@voltanet.io> | 2020-08-12 18:03:21 +0100 |
| commit | 2bdd4461c1edf81d3a94be9c41d3326bc9f4112c (patch) | |
| tree | d5c462f30ba89eb13546837b7d24a6727e6aa6b2 /zebra/zebra_vxlan.c | |
| parent | 707b76d79555dc2c5e130c6f2dc79827a54c112c (diff) | |
zebra: clean up SA warning in EVPN code
Use asserts rather thank test where the values should definitely
not be NULL.
Signed-off-by: Pat Ruddy <pat@voltanet.io>
Diffstat (limited to 'zebra/zebra_vxlan.c')
| -rw-r--r-- | zebra/zebra_vxlan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index c27be4743e..13a58bc34a 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -3963,8 +3963,7 @@ int zebra_vxlan_local_mac_add_update(struct interface *ifp, struct zebra_vrf *zvrf; char buf[ETHER_ADDR_STRLEN]; - if (ifp == NULL) - return -1; + assert(ifp); /* We are interested in MACs only on ports or (port, VLAN) that * map to an EVPN. |
