Suppress unused parameter warning

This commit is contained in:
jackctj117
2025-11-13 18:32:00 -07:00
parent 29c2f15a8f
commit 5e2fd78113

View File

@@ -37172,6 +37172,8 @@ static int DoSessionTicket(WOLFSSL* ssl, const byte* input, word32* inOutIdx,
*/
static WC_INLINE int IsTls13CipherSuite(byte first, byte second)
{
(void)second; /* Suppress unused parameter warning */
/* TLS 1.3 cipher suites use TLS13_BYTE (0x13) as first byte */
if (first == TLS13_BYTE)
return 1;