Commit b393a4ad authored by Andy Polyakov's avatar Andy Polyakov
Browse files

evp/e_des3.c: address compiler warning.



In backporting from master one modification was mistreated.

RT#4210

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 43be582e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }