diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2024-11-14 16:02:18 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2024-11-14 16:03:14 -0500 |
| commit | d580af839482c46a970054465f7652d48ee095f0 (patch) | |
| tree | da95cde64412be20e583a28aee45aee091f568ad /zebra/zebra_vxlan.c | |
| parent | 922489a8d6d26f12e2ff18ba2c9e0866836768a3 (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.c | 3 |
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; } } |
