diff options
author | Donald Sharp <sharpd@nvidia.com> | 2023-01-30 16:09:37 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-01-31 21:15:59 +0100 |
commit | 4a055ac2c97bf5145c3f604b3e9b98e0fc2bd3c4 (patch) | |
tree | 41f022fb8718e19fee158b89e7d445257e009af6 /ldpd/ldp_zebra.c | |
parent | staticd: Add missing enum's to switch statement (diff) | |
download | frr-4a055ac2c97bf5145c3f604b3e9b98e0fc2bd3c4.tar.xz frr-4a055ac2c97bf5145c3f604b3e9b98e0fc2bd3c4.zip |
ldpd: Add missing enum's to switch statement
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ldpd/ldp_zebra.c')
-rw-r--r-- | ldpd/ldp_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/ldp_zebra.c b/ldpd/ldp_zebra.c index 059115915..833545cf5 100644 --- a/ldpd/ldp_zebra.c +++ b/ldpd/ldp_zebra.c @@ -597,7 +597,7 @@ ldp_zebra_read_route(ZAPI_CALLBACK_ARGS) if (!(kr.flags & F_CONNECTED)) continue; break; - default: + case NEXTHOP_TYPE_BLACKHOLE: continue; } |