From 9673b3f2180823af351eca6cb4d1924d055e1006 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Wed, 29 May 2024 17:00:22 -0600 Subject: [PATCH] make function signature match declaration --- src/ssl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ssl.c b/src/ssl.c index d027ef01b..b579fb571 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -14091,14 +14091,14 @@ const char* wolfSSL_get_cipher_name(WOLFSSL* ssl) return wolfSSL_get_cipher_name_internal(ssl); } -const char* wolfSSL_get_cipher_name_from_suite(const byte cipherSuite0, - const byte cipherSuite) +const char* wolfSSL_get_cipher_name_from_suite(byte cipherSuite0, + byte cipherSuite) { return GetCipherNameInternal(cipherSuite0, cipherSuite); } -const char* wolfSSL_get_cipher_name_iana_from_suite(const byte cipherSuite0, - const byte cipherSuite) +const char* wolfSSL_get_cipher_name_iana_from_suite(byte cipherSuite0, + byte cipherSuite) { return GetCipherNameIana(cipherSuite0, cipherSuite); }