mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-29 18:15:27 +00:00
zebra: fix unguarded debug in evpn code
Guard a debug in the evpn code. Signed-off-by: Mark Stapp <mjs@cisco.com>
This commit is contained in:
parent
5456bc5d93
commit
aee85f7c6a
@ -748,7 +748,8 @@ struct zebra_evpn *zebra_evpn_from_svi(struct interface *ifp,
|
|||||||
|
|
||||||
/* Make sure the linked interface is a bridge. */
|
/* Make sure the linked interface is a bridge. */
|
||||||
if (!IS_ZEBRA_IF_BRIDGE(br_if)) {
|
if (!IS_ZEBRA_IF_BRIDGE(br_if)) {
|
||||||
zlog_debug("%s: br_if NOT a bridge", __func__);
|
if (IS_ZEBRA_DEBUG_VXLAN)
|
||||||
|
zlog_debug("%s: br_if NOT a bridge", __func__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user