From: Donald Sharp Date: Sun, 29 Oct 2023 20:04:16 +0000 (-0400) Subject: zebra: Fix missing break in switch X-Git-Tag: base_10.0~309^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=a22ab3f98f96908dc1bf7b7ad675e0005193d8e5;p=matthieu%2Ffrr.git zebra: Fix missing break in switch Recent Changes added the -Wimplicit-fallthrough flag to FRR's compilation. Implementor does not build with lua support and as such this one was missed in the compilation Signed-off-by: Donald Sharp --- diff --git a/zebra/zebra_script.c b/zebra/zebra_script.c index 9f8490ac66..3ebc6d974b 100644 --- a/zebra/zebra_script.c +++ b/zebra/zebra_script.c @@ -396,6 +396,7 @@ void lua_pushzebra_dplane_ctx(lua_State *L, const struct zebra_dplane_ctx *ctx) lua_setfield(L, -2, "mtu"); } lua_setfield(L, -2, "gre"); + break; case DPLANE_OP_ADDR_INSTALL: case DPLANE_OP_ADDR_UNINSTALL: