diff options
author | Donald Sharp <sharpd@nvidia.com> | 2023-01-30 16:11:15 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-01-31 21:15:59 +0100 |
commit | 01e02202ee67961f9a2046e18993ba23362e11d7 (patch) | |
tree | 424577e680d61d45b3ef787da87066a3277458e2 /ripngd | |
parent | ripd: Add missin enum's to switch statement (diff) | |
download | frr-01e02202ee67961f9a2046e18993ba23362e11d7.tar.xz frr-01e02202ee67961f9a2046e18993ba23362e11d7.zip |
ripngd: Add missing enums to switch statement
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ripngd')
-rw-r--r-- | ripngd/ripngd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c index 755debd0a..0350dc224 100644 --- a/ripngd/ripngd.c +++ b/ripngd/ripngd.c @@ -1933,7 +1933,8 @@ void ripng_event(struct ripng *ripng, enum ripng_event event, int sock) thread_add_event(master, ripng_triggered_update, ripng, 0, &ripng->t_triggered_update); break; - default: + case RIPNG_ZEBRA: + case RIPNG_REQUEST_EVENT: break; } } |