]> git.droids-corp.org - dpdk.git/blobdiff - examples/ipsec-secgw/sa.c
examples/ipsec-secgw: replace strncpy with strlcpy
[dpdk.git] / examples / ipsec-secgw / sa.c
index 21239dd978555d6d04491c1635de9aafe7e9e8c8..d9dcc0e0687fcfe7b3c918c95281fb80e90c0593 100644 (file)
@@ -631,7 +631,8 @@ print_one_sa_rule(const struct ipsec_sa *sa, int inbound)
        printf("\tspi_%s(%3u):", inbound?"in":"out", sa->spi);
 
        for (i = 0; i < RTE_DIM(cipher_algos); i++) {
-               if (cipher_algos[i].algo == sa->cipher_algo) {
+               if (cipher_algos[i].algo == sa->cipher_algo &&
+                               cipher_algos[i].key_len == sa->cipher_key_len) {
                        printf("%s ", cipher_algos[i].keyword);
                        break;
                }