api: clean up error message 01/38801/2
authorDave Wallace <dwallacelf@gmail.com>
Wed, 10 May 2023 16:05:55 +0000 (12:05 -0400)
committerFlorin Coras <florin.coras@gmail.com>
Wed, 10 May 2023 20:00:36 +0000 (20:00 +0000)
- remove non-inclusive language in message and improve
  clarity of the error message

Type: style

Change-Id: I3f4895d6a502c2583a8b6b3c325a3f30ced03f84
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
src/vlibapi/api_shared.c

index 0ea5280..d2f1759 100644 (file)
@@ -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;
 }