From a05a305d70031278eb3faec7904f47e318b8d927 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Fri, 9 Oct 2020 15:59:14 -0700 Subject: [PATCH] Fix unused parameters in SKIP_SUITE. --- src/ssl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ssl.c b/src/ssl.c index 64aea9ca0..2a7377923 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -43504,6 +43504,8 @@ unsigned long wolfSSL_ERR_peek_error_line_data(const char **file, int *line, static WC_INLINE int SKIP_SUITE(byte suite0, byte suite) { + (void)suite0; + (void)suite; #ifdef HAVE_RENEGOTIATION_INDICATION if (suite0 == CIPHER_BYTE && suite == TLS_EMPTY_RENEGOTIATION_INFO_SCSV) return 1;