From 637c51fc40667dbfa968b225fff73b48e79b6df3 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 20 Oct 2020 08:49:31 +0000 Subject: ipsec: Stack the adj from the destination in the SA's TX table Type: fix Signed-off-by: Neale Ranns Change-Id: Ib7f39243e051cdf44cc7151d14458a7fab42c6a8 --- src/vnet/ipsec/ipsec_itf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vnet/ipsec/ipsec_itf.c b/src/vnet/ipsec/ipsec_itf.c index 6724eab73a8..46095ce07fe 100644 --- a/src/vnet/ipsec/ipsec_itf.c +++ b/src/vnet/ipsec/ipsec_itf.c @@ -76,7 +76,7 @@ ipsec_itf_adj_stack (adj_index_t ai, u32 sai) }; /* *INDENT-ON* */ - adj_midchain_delegate_stack (ai, 0, &dst); + adj_midchain_delegate_stack (ai, sa->tx_fib_index, &dst); } else adj_midchain_delegate_unstack (ai); -- cgit 1.2.3-korg