summaryrefslogtreecommitdiff
path: root/zebra/zebra_vxlan.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2024-11-14 16:02:18 -0500
committerDonald Sharp <sharpd@nvidia.com>2024-11-14 16:03:14 -0500
commitd580af839482c46a970054465f7652d48ee095f0 (patch)
treeda95cde64412be20e583a28aee45aee091f568ad /zebra/zebra_vxlan.c
parent922489a8d6d26f12e2ff18ba2c9e0866836768a3 (diff)
zebra: zebra_vxlan.c assert on dev escape problem
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_vxlan.c')
-rw-r--r--zebra/zebra_vxlan.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c
index 8a1664440f..05f47492ab 100644
--- a/zebra/zebra_vxlan.c
+++ b/zebra/zebra_vxlan.c
@@ -172,8 +172,7 @@ static int host_rb_entry_compare(const struct host_rb_entry *hle1,
return 0;
} else {
- zlog_debug("%s: Unexpected family type: %d", __func__,
- hle1->p.family);
+ assert(!"Received unexpected family type, dev escape");
return 0;
}
}