diff options
author | Damjan Marion <damarion@cisco.com> | 2019-03-28 21:40:48 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-03-28 23:29:22 +0000 |
commit | a03d18238350f9941357caca28957395ad737810 (patch) | |
tree | 1a87522460cc9d2c1e349daff7b4f0f709704d29 /src/plugins | |
parent | 1e3aa5e213c23588981ee17d1413a0441a40527a (diff) |
crypto: add vnet_crypto_op_init (...)
Change-Id: I2018d8367bb010e1ab30d9c7c23d9501fc38a2e5
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/unittest/crypto_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/unittest/crypto_test.c b/src/plugins/unittest/crypto_test.c index 6d57cea82c7..768221b56ad 100644 --- a/src/plugins/unittest/crypto_test.c +++ b/src/plugins/unittest/crypto_test.c @@ -62,7 +62,7 @@ test_crypto (vlib_main_t * vm, crypto_test_main_t * tm) { r = rv[i]; op = ops + i; - op->op = r->op; + vnet_crypto_op_init (op, r->op); op->iv = r->iv.data; op->key = r->key.data; op->src = r->data.data; |