From fade8f2eba9a1600b76793dcb5fcef8faefb5719 Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 30 May 2024 10:59:04 -0700 Subject: [PATCH] Merge pull request #7596 from JacobBarthelmeh/decl 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 e26ced4566..25b1d450fe 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); }