Fixes: 387259bd6c67 ("examples/l2fwd-crypto: add sample application")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch at intel.com>
---
 examples/l2fwd-crypto/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/l2fwd-crypto/main.c b/examples/l2fwd-crypto/main.c
index 37f59c4..17a7774 100644
--- a/examples/l2fwd-crypto/main.c
+++ b/examples/l2fwd-crypto/main.c
@@ -791,7 +791,7 @@ parse_auth_op(enum rte_crypto_auth_operation *op, char 
*optarg)
                *op = RTE_CRYPTO_AUTH_OP_VERIFY;
                return 0;
        } else if (strcmp("GENERATE", optarg) == 0) {
-               *op = RTE_CRYPTO_AUTH_OP_VERIFY;
+               *op = RTE_CRYPTO_AUTH_OP_GENERATE;
                return 0;
        }

@@ -829,11 +829,11 @@ l2fwd_crypto_parse_args_long_options(struct 
l2fwd_crypto_options *options,

        /* Authentication options */
        else if (strcmp(lgopts[option_index].name, "auth_algo") == 0)
-               return parse_auth_algo(&options->cipher_xform.auth.algo,
+               return parse_auth_algo(&options->auth_xform.auth.algo,
                                optarg);

        else if (strcmp(lgopts[option_index].name, "auth_op") == 0)
-               return parse_auth_op(&options->cipher_xform.auth.op,
+               return parse_auth_op(&options->auth_xform.auth.op,
                                optarg);

        else if (strcmp(lgopts[option_index].name, "auth_key") == 0)
-- 
2.5.0

Reply via email to