aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2014-12-10 12:12:12 -0500
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-12-11 12:48:00 +0300
commit8f3494ce0f883bd3488315800cfdac8b18445ca4 (patch)
tree26e94c580cb9730e1f6009d633addb631f6f2b27
parenta16d5bd9d9a0b083efaac97f1d827a936c13cabe (diff)
odp_ipsec: fix odp_crypto_get_operation_compl_status arg order
This fixes https://bugs.linaro.org/show_bug.cgi?id=714 Signed-off-by: Alexandru Badicioiu <alexandru.badicioiu@linaro.org> Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--example/ipsec/odp_ipsec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ipsec/odp_ipsec.c b/example/ipsec/odp_ipsec.c
index aeeb1ba1f..538f8dc3c 100644
--- a/example/ipsec/odp_ipsec.c
+++ b/example/ipsec/odp_ipsec.c
@@ -772,7 +772,7 @@ pkt_disposition_e do_ipsec_in_finish(odp_packet_t pkt,
/* Check crypto result */
event = odp_packet_to_buffer(pkt);
- odp_crypto_get_operation_compl_status(event, &cipher_rc, &auth_rc);
+ odp_crypto_get_operation_compl_status(event, &auth_rc, &cipher_rc);
if (!is_crypto_compl_status_ok(&cipher_rc))
return PKT_DROP;
if (!is_crypto_compl_status_ok(&auth_rc))
@@ -1004,7 +1004,7 @@ pkt_disposition_e do_ipsec_out_finish(odp_packet_t pkt,
/* Check crypto result */
event = odp_packet_to_buffer(pkt);
- odp_crypto_get_operation_compl_status(event, &cipher_rc, &auth_rc);
+ odp_crypto_get_operation_compl_status(event, &auth_rc, &cipher_rc);
if (!is_crypto_compl_status_ok(&cipher_rc))
return PKT_DROP;
if (!is_crypto_compl_status_ok(&auth_rc))