From: Neale Ranns Date: Tue, 26 Mar 2019 15:54:32 +0000 (-0700) Subject: GBP: missing L3-out type coversion X-Git-Tag: v19.04-rc1~124 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F36%2F18536%2F2;p=vpp.git GBP: missing L3-out type coversion Change-Id: Ic6455a930fcb21b055bcf093359bc8328f88140a Signed-off-by: Neale Ranns --- diff --git a/extras/vom/vom/gbp_subnet_cmds.cpp b/extras/vom/vom/gbp_subnet_cmds.cpp index cf2801c8d63..94152ffe369 100644 --- a/extras/vom/vom/gbp_subnet_cmds.cpp +++ b/extras/vom/vom/gbp_subnet_cmds.cpp @@ -51,6 +51,8 @@ gbp_subnet_type_to_api(const gbp_subnet::type_t& type) return (GBP_API_SUBNET_STITCHED_EXTERNAL); if (gbp_subnet::type_t::TRANSPORT == type) return (GBP_API_SUBNET_TRANSPORT); + if (gbp_subnet::type_t::L3_OUT == type) + return (GBP_API_SUBNET_L3_OUT); return (GBP_API_SUBNET_STITCHED_INTERNAL); }