summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-02-18 14:08:55 +0100
committerAndy Polyakov <appro@openssl.org>2016-02-19 13:34:42 +0100
commitb393a4ad38093f54a0e7251ac8694e320a150e12 (patch)
tree250595be633edc432765cd3d0f23e6569c3e3439 /crypto/evp
parent43be582e9b88577b84854954602f131c4edbdde1 (diff)
evp/e_des3.c: address compiler warning.
In backporting from master one modification was mistreated. RT#4210 Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/e_des3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/e_des3.c b/crypto/evp/e_des3.c
index f006d1b926..0e910d6d80 100644
--- a/crypto/evp/e_des3.c
+++ b/crypto/evp/e_des3.c
@@ -163,7 +163,7 @@ static int des_ede_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
}
# endif /* KSSL_DEBUG */
if (dat->stream.cbc) {
- (*dat->stream.cbc) (in, out, inl, &dat->ks, ctx->iv);
+ (*dat->stream.cbc) (in, out, inl, dat->ks.ks, ctx->iv);
return 1;
}