remove HAVE_CRL macro guard from X509 PEM write function

This commit is contained in:
Jacob Barthelmeh
2019-07-02 14:37:33 -06:00
parent 3652929573
commit a7acacff41

View File

@ -30539,7 +30539,7 @@ void* wolfSSL_GetDhAgreeCtx(WOLFSSL* ssl)
return x509; return x509;
} }
#if defined(HAVE_CRL) && !defined(NO_FILESYSTEM) #if !defined(NO_FILESYSTEM)
static void* wolfSSL_PEM_read_X509_ex(XFILE fp, void **x, static void* wolfSSL_PEM_read_X509_ex(XFILE fp, void **x,
pem_password_cb *cb, void *u, int type) pem_password_cb *cb, void *u, int type)
{ {
@ -30656,7 +30656,7 @@ void* wolfSSL_GetDhAgreeCtx(WOLFSSL* ssl)
return ret; return ret;
} }
#endif #endif /* !NO_FILESYSTEM */
#define PEM_BEGIN "-----BEGIN " #define PEM_BEGIN "-----BEGIN "
#define PEM_BEGIN_SZ 11 #define PEM_BEGIN_SZ 11