From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:41 +0000 (+0000) Subject: ipsec: fix missing header include X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=071b9b78c441ee6f87775651fb2080061704d901;p=dpdk.git ipsec: fix missing header include The rte_ipsec_sad.h header used the standard uintXX_t types, but did not include stdint.h header for them. Fixes: 401633d9c112 ("ipsec: add inbound SAD API") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Acked-by: Konstantin Ananyev Acked-by: Vladimir Medvedkin Reviewed-by: David Marchand --- diff --git a/lib/librte_ipsec/rte_ipsec_sad.h b/lib/librte_ipsec/rte_ipsec_sad.h index 3e67ab1e4b..b65d295831 100644 --- a/lib/librte_ipsec/rte_ipsec_sad.h +++ b/lib/librte_ipsec/rte_ipsec_sad.h @@ -6,6 +6,8 @@ #ifndef _RTE_IPSEC_SAD_H_ #define _RTE_IPSEC_SAD_H_ +#include + #include /**