fix: abide unused arguments when WOLFSSL_CHECK_ALER_ON_ERR is disabled

This commit is contained in:
Marco Oliverio
2025-12-17 16:31:33 +01:00
parent 38d8eb6f0d
commit f4c48c19c1

View File

@@ -42538,6 +42538,9 @@ void wolfSSL_MaybeCheckAlertOnErr(WOLFSSL* ssl, int err)
}
/* check if an alert was sent */
ProcessReplyEx(ssl, 1);
#else
(void)ssl;
(void)err;
#endif /* WOLFSSL_CHECK_ALERT_ON_ERR */
}