From: tb Date: Sun, 7 Jan 2024 16:18:18 +0000 (+0000) Subject: const-correct r4_hmac_md5_cipher X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=f90ece95a9e3b5341b46d33fd04c7c7e0d1c866e;p=openbsd const-correct r4_hmac_md5_cipher --- diff --git a/lib/libcrypto/evp/e_rc4_hmac_md5.c b/lib/libcrypto/evp/e_rc4_hmac_md5.c index 5701aeefc68..420b945a80e 100644 --- a/lib/libcrypto/evp/e_rc4_hmac_md5.c +++ b/lib/libcrypto/evp/e_rc4_hmac_md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_rc4_hmac_md5.c,v 1.14 2024/01/07 15:42:57 tb Exp $ */ +/* $OpenBSD: e_rc4_hmac_md5.c,v 1.15 2024/01/07 16:18:18 tb Exp $ */ /* ==================================================================== * Copyright (c) 2011 The OpenSSL Project. All rights reserved. * @@ -281,7 +281,7 @@ rc4_hmac_md5_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr) } } -static EVP_CIPHER r4_hmac_md5_cipher = { +static const EVP_CIPHER r4_hmac_md5_cipher = { #ifdef NID_rc4_hmac_md5 .nid = NID_rc4_hmac_md5, #else