From 47417efb43018f53668a061252fa1164aec412e3 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 28 Mar 2024 12:11:26 +0000 Subject: Use static inline for rc4_set_key_internal(). --- src/lib/libcrypto/rc4/rc4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/rc4/rc4.c b/src/lib/libcrypto/rc4/rc4.c index ff29fdda05..203fee4996 100644 --- a/src/lib/libcrypto/rc4/rc4.c +++ b/src/lib/libcrypto/rc4/rc4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rc4.c,v 1.10 2024/03/28 08:18:13 joshua Exp $ */ +/* $OpenBSD: rc4.c,v 1.11 2024/03/28 12:11:26 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -262,7 +262,7 @@ rc4_internal(RC4_KEY *key, size_t len, const unsigned char *indata, void rc4_set_key_internal(RC4_KEY *key, int len, const unsigned char *data); #else -static void +static inline void rc4_set_key_internal(RC4_KEY *key, int len, const unsigned char *data) { RC4_INT tmp; -- cgit v1.2.3-55-g6feb