summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-01-02 18:30:27 +0000
committertb <>2024-01-02 18:30:27 +0000
commit5e559271f3dd87cf731e17c250fa2efb5e1e3fe8 (patch)
treeb141899d90a33853f82c78398c3788bd9e7eb91a /src
parent87aa0694f8442339e8640b047d7dc8c05c23c6f5 (diff)
downloadopenbsd-5e559271f3dd87cf731e17c250fa2efb5e1e3fe8.tar.gz
openbsd-5e559271f3dd87cf731e17c250fa2efb5e1e3fe8.tar.bz2
openbsd-5e559271f3dd87cf731e17c250fa2efb5e1e3fe8.zip
Rename the poor outlier EVP_CIPHER *e into *cipher
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/evp/evp_cipher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/evp_cipher.c b/src/lib/libcrypto/evp/evp_cipher.c
index 9632c4bacd..38aeaa0030 100644
--- a/src/lib/libcrypto/evp/evp_cipher.c
+++ b/src/lib/libcrypto/evp/evp_cipher.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_cipher.c,v 1.5 2024/01/02 18:28:35 tb Exp $ */ 1/* $OpenBSD: evp_cipher.c,v 1.6 2024/01/02 18:30:27 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -860,9 +860,9 @@ EVP_CIPHER_type(const EVP_CIPHER *cipher)
860} 860}
861 861
862int 862int
863EVP_CIPHER_block_size(const EVP_CIPHER *e) 863EVP_CIPHER_block_size(const EVP_CIPHER *cipher)
864{ 864{
865 return e->block_size; 865 return cipher->block_size;
866} 866}
867 867
868int 868int