summaryrefslogtreecommitdiff
path: root/zebra/zebra_script.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2022-03-16 15:10:54 -0400
committerDonald Sharp <sharpd@nvidia.com>2022-03-16 15:10:54 -0400
commit105271792da6172bf69cb9f1234c2f3c60e2d403 (patch)
treec8d32b3d7e41f841c62031f0b37da171e032e1ed /zebra/zebra_script.c
parent335b15ebe043f259774aa96c17b2920b5538fd86 (diff)
zebra: Fixup lua with new dplane ops
Commit: 5d41413833 added 3 new dplane ops: DPLANE_OP_INTF_INSTALL DPLANE_OP_INTF_UPDATE DPLANE_OP_INTF_DELETE The build system does not build lua so zebra_script.c was not updated. Update of course! Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_script.c')
-rw-r--r--zebra/zebra_script.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zebra_script.c b/zebra/zebra_script.c
index 4087749fd7..9805390a6d 100644
--- a/zebra/zebra_script.c
+++ b/zebra/zebra_script.c
@@ -331,6 +331,9 @@ void lua_pushzebra_dplane_ctx(lua_State *L, const struct zebra_dplane_ctx *ctx)
case DPLANE_OP_ADDR_UNINSTALL:
case DPLANE_OP_INTF_ADDR_ADD:
case DPLANE_OP_INTF_ADDR_DEL:
+ case DPLANE_OP_INTF_INSTALL:
+ case DPLANE_OP_INTF_UPDATE:
+ case DPLANE_OP_INTF_DELETE:
break;
case DPLANE_OP_NEIGH_INSTALL:
case DPLANE_OP_NEIGH_UPDATE: