Skip to content

Commit 107c10d

Browse files
authored
Merge pull request #7596 from JacobBarthelmeh/decl
make function signature match declaration
2 parents 61fea76 + 9673b3f commit 107c10d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/ssl.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14091,14 +14091,14 @@ const char* wolfSSL_get_cipher_name(WOLFSSL* ssl)
1409114091
return wolfSSL_get_cipher_name_internal(ssl);
1409214092
}
1409314093

14094-
const char* wolfSSL_get_cipher_name_from_suite(const byte cipherSuite0,
14095-
const byte cipherSuite)
14094+
const char* wolfSSL_get_cipher_name_from_suite(byte cipherSuite0,
14095+
byte cipherSuite)
1409614096
{
1409714097
return GetCipherNameInternal(cipherSuite0, cipherSuite);
1409814098
}
1409914099

14100-
const char* wolfSSL_get_cipher_name_iana_from_suite(const byte cipherSuite0,
14101-
const byte cipherSuite)
14100+
const char* wolfSSL_get_cipher_name_iana_from_suite(byte cipherSuite0,
14101+
byte cipherSuite)
1410214102
{
1410314103
return GetCipherNameIana(cipherSuite0, cipherSuite);
1410414104
}

0 commit comments

Comments
 (0)