diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-01-02 18:30:28 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-01-02 18:30:28 +0000 |
commit | 7e2c498d5b5eaa18ddd7679aa7cd69c4d9206327 (patch) | |
tree | d4a64638984bbd7fc4e8ac44ecd88c158913033c /lib | |
parent | 6e0deb4e1bd0a7f3ee8fd36b62d22f2729e1c490 (diff) |
Rename the poor outlier EVP_CIPHER *e into *cipher
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/evp/evp_cipher.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/evp/evp_cipher.c b/lib/libcrypto/evp/evp_cipher.c index 9632c4bacd1..38aeaa00301 100644 --- a/lib/libcrypto/evp/evp_cipher.c +++ b/lib/libcrypto/evp/evp_cipher.c @@ -1,4 +1,4 @@ -/* $OpenBSD: evp_cipher.c,v 1.5 2024/01/02 18:28:35 tb Exp $ */ +/* $OpenBSD: evp_cipher.c,v 1.6 2024/01/02 18:30:27 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -860,9 +860,9 @@ EVP_CIPHER_type(const EVP_CIPHER *cipher) } int -EVP_CIPHER_block_size(const EVP_CIPHER *e) +EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { - return e->block_size; + return cipher->block_size; } int |