From e585d87ddb7f7d7ff614655f1da0f86cbb51671a Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 7 Jan 2024 16:18:18 +0000 Subject: const-correct r4_hmac_md5_cipher --- src/lib/libcrypto/evp/e_rc4_hmac_md5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/evp/e_rc4_hmac_md5.c b/src/lib/libcrypto/evp/e_rc4_hmac_md5.c index 5701aeefc6..420b945a80 100644 --- a/src/lib/libcrypto/evp/e_rc4_hmac_md5.c +++ b/src/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 -- cgit v1.2.3-55-g6feb