From: Dave Wallace Date: Wed, 10 May 2023 16:05:55 +0000 (-0400) Subject: api: clean up error message X-Git-Tag: v23.10-rc0~40 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=0b7200f7eef8881018c1e6dfb7ef10cf1e221362;p=vpp.git api: clean up error message - remove non-inclusive language in message and improve clarity of the error message Type: style Change-Id: I3f4895d6a502c2583a8b6b3c325a3f30ced03f84 Signed-off-by: Dave Wallace --- diff --git a/src/vlibapi/api_shared.c b/src/vlibapi/api_shared.c index 0ea52802bb7..d2f17593284 100644 --- a/src/vlibapi/api_shared.c +++ b/src/vlibapi/api_shared.c @@ -1060,8 +1060,9 @@ vl_api_from_api_to_new_vec (void *mp, vl_api_string_t * astr) u8 *v = 0; if (vl_msg_api_max_length (mp) < clib_net_to_host_u32 (astr->length)) - return format (0, "insane astr->length %u%c", - clib_net_to_host_u32 (astr->length), 0); + return format (0, "Invalid astr->length %u > max (%u)%c", + clib_net_to_host_u32 (astr->length), + vl_msg_api_max_length (mp), 0); vec_add (v, astr->buf, clib_net_to_host_u32 (astr->length)); return v; }