From 5e2fd781132ef2ae100e6d9a2c7f351a90034707 Mon Sep 17 00:00:00 2001 From: jackctj117 Date: Thu, 13 Nov 2025 18:32:00 -0700 Subject: [PATCH] Suppress unused parameter warning --- src/internal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/internal.c b/src/internal.c index 97e126b45..4b4e8449c 100644 --- a/src/internal.c +++ b/src/internal.c @@ -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;