mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
Hush Unused Param Warning
Removed a guard check for NO_WOLFSSL_STUB from wolfSSL_X509_print_ex(). To recreate: $ ./configure --enable-opensslextra CPPFLAGS="-DNO_WOLFSSL_STUB" $ make
This commit is contained in:
@ -20946,11 +20946,9 @@ int wolfSSL_X509_cmp(const WOLFSSL_X509 *a, const WOLFSSL_X509 *b)
|
|||||||
{
|
{
|
||||||
WOLFSSL_ENTER("wolfSSL_X509_print_ex");
|
WOLFSSL_ENTER("wolfSSL_X509_print_ex");
|
||||||
|
|
||||||
#ifndef NO_WOLFSSL_STUB
|
|
||||||
/* flags currently not supported */
|
/* flags currently not supported */
|
||||||
(void)nmflags;
|
(void)nmflags;
|
||||||
(void)cflag;
|
(void)cflag;
|
||||||
#endif
|
|
||||||
|
|
||||||
if (bio == NULL || x509 == NULL) {
|
if (bio == NULL || x509 == NULL) {
|
||||||
return WOLFSSL_FAILURE;
|
return WOLFSSL_FAILURE;
|
||||||
|
Reference in New Issue
Block a user