From 0b7200f7eef8881018c1e6dfb7ef10cf1e221362 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Wed, 10 May 2023 12:05:55 -0400 Subject: [PATCH] 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 --- src/vlibapi/api_shared.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.16.6