diff options
author | Simon L. B. Nielsen <simon@FreeBSD.org> | 2007-03-15 20:26:26 +0000 |
---|---|---|
committer | Simon L. B. Nielsen <simon@FreeBSD.org> | 2007-03-15 20:26:26 +0000 |
commit | c30e4c61747efa38a51b4f5848b597da341fd0cd (patch) | |
tree | 3c346c3924a708cc2fcd638e728c7022f275fda7 /crypto | |
parent | 5471f83ea72e251ea1f0d04428878a74347efa0f (diff) |
Notes
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssl/crypto/evp/evp_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssl/crypto/evp/evp_lib.c b/crypto/openssl/crypto/evp/evp_lib.c index f92db23af6495..edb28ef38ed7b 100644 --- a/crypto/openssl/crypto/evp/evp_lib.c +++ b/crypto/openssl/crypto/evp/evp_lib.c @@ -225,7 +225,7 @@ int EVP_CIPHER_key_length(const EVP_CIPHER *cipher) int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx) { - return ctx->cipher->key_len; + return ctx->key_len; } int EVP_CIPHER_nid(const EVP_CIPHER *cipher) |