From: Florin Coras Date: Thu, 20 May 2021 02:33:19 +0000 (-0700) Subject: session: fix transport half-open cleanup call X-Git-Tag: v21.10-rc0~38 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F90%2F32390%2F3;p=vpp.git session: fix transport half-open cleanup call Type: fix Signed-off-by: Florin Coras Change-Id: I47d241a8f2f9e9d0761d14dcddd3327c3b28932c --- diff --git a/src/vnet/session/transport.c b/src/vnet/session/transport.c index 5975197609d..526f1a2da15 100644 --- a/src/vnet/session/transport.c +++ b/src/vnet/session/transport.c @@ -307,7 +307,7 @@ transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index) void transport_cleanup_half_open (transport_proto_t tp, u32 conn_index) { - if (tp_vfts[tp].cleanup) + if (tp_vfts[tp].cleanup_ho) tp_vfts[tp].cleanup_ho (conn_index); }