summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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