From: tb Date: Tue, 2 Jan 2024 18:30:27 +0000 (+0000) Subject: Rename the poor outlier EVP_CIPHER *e into *cipher X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=18dea6b0d7cf39ef8c97ed0ce075527400daa177;p=openbsd Rename the poor outlier EVP_CIPHER *e into *cipher --- 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