From: Andy Polyakov Date: Thu, 18 Feb 2016 13:08:55 +0000 (+0100) Subject: evp/e_des3.c: address compiler warning. X-Git-Tag: OpenSSL_1_0_2g~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b393a4ad38093f54a0e7251ac8694e320a150e12;p=openssl evp/e_des3.c: address compiler warning. In backporting from master one modification was mistreated. RT#4210 Reviewed-by: Matt Caswell --- 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; }