From: Stanislav Zaikin Date: Mon, 14 Oct 2024 10:42:44 +0000 (+0200) Subject: ip: fix ip_local_reassembly_get handler X-Git-Tag: v25.06-rc0~226 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=4d9abd6cddf7af8bfc56837f305b13abac48de03;p=vpp.git ip: fix ip_local_reassembly_get handler Type: fix Signed-off-by: Stanislav Zaikin Change-Id: I6431557d01756174005df26350c28299f83fcee0 --- diff --git a/src/vnet/ip/ip_api.c b/src/vnet/ip/ip_api.c index 5ced88fec2e..1f025fa1113 100644 --- a/src/vnet/ip/ip_api.c +++ b/src/vnet/ip/ip_api.c @@ -1924,7 +1924,7 @@ vl_api_ip_local_reass_get_t_handler (vl_api_ip_local_reass_get_t *mp) { vl_api_ip_local_reass_get_reply_t *rmp; int rv = 0; - REPLY_MACRO2 (VL_API_IP_LOCAL_REASS_GET, { + REPLY_MACRO2 (VL_API_IP_LOCAL_REASS_GET_REPLY, { rmp->ip4_is_enabled = ip4_local_full_reass_enabled (); rmp->ip6_is_enabled = ip6_local_full_reass_enabled (); });