From 5accd57c2156caefb527c5924fcac41716727f83 Mon Sep 17 00:00:00 2001 From: Sean Parkinson Date: Wed, 6 Jan 2021 11:05:58 +1000 Subject: [PATCH] X509 API no file system: hide wolfSSL_X509_NAME_print_ex_fp configuration: --enable-all --disable-filesystem wolfSSL_X509_NAME_print_ex_fp has XFILE as a parameter and cannot be compiled with --disable-filesystem --- src/ssl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ssl.c b/src/ssl.c index e2576a553..1026a878d 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -45183,6 +45183,7 @@ int wolfSSL_X509_NAME_print_ex(WOLFSSL_BIO* bio, WOLFSSL_X509_NAME* name, } #endif /* !NO_BIO */ +#ifndef NO_FILESYSTEM int wolfSSL_X509_NAME_print_ex_fp(XFILE file, WOLFSSL_X509_NAME* name, int indent, unsigned long flags) { @@ -45202,6 +45203,7 @@ int wolfSSL_X509_NAME_print_ex_fp(XFILE file, WOLFSSL_X509_NAME* name, return ret; } +#endif #ifndef NO_WOLFSSL_STUB WOLFSSL_ASN1_BIT_STRING* wolfSSL_X509_get0_pubkey_bitstr(const WOLFSSL_X509* x)