session: fix formatting of half open sessions 37/38537/3
authorFlorin Coras <fcoras@cisco.com>
Thu, 23 Mar 2023 02:07:35 +0000 (19:07 -0700)
committerDave Barach <vpp@barachs.net>
Thu, 23 Mar 2023 17:27:53 +0000 (17:27 +0000)
Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I45a524bebd2dc1e318fa8d2a645bfc769e1da840

src/vnet/session/transport.c

index 7e40164..bfd85eb 100644 (file)
@@ -146,14 +146,13 @@ u8 *
 format_transport_half_open_connection (u8 * s, va_list * args)
 {
   u32 transport_proto = va_arg (*args, u32);
-  u32 ho_index = va_arg (*args, u32);
   transport_proto_vft_t *tp_vft;
 
   tp_vft = transport_protocol_get_vft (transport_proto);
   if (!tp_vft)
     return s;
 
-  s = format (s, "%U", tp_vft->format_half_open, ho_index);
+  s = (tp_vft->format_half_open) (s, args);
   return s;
 }