mirror of https://github.com/wolfSSL/wolfssl.git
fix typo with NO_CERTS macro
parent
200f309e0e
commit
cf61df129c
|
@ -86,7 +86,7 @@
|
|||
#define NO_RABBIT
|
||||
#define NO_MD5
|
||||
#define NO_SIG_WRAPPER
|
||||
#define NO_CERT
|
||||
#define NO_CERTS
|
||||
#define NO_SESSION_CACHE
|
||||
#define NO_HC128
|
||||
#define NO_DES3
|
||||
|
|
|
@ -23273,7 +23273,7 @@ wolfSSL_CTX_keylog_cb_func wolfSSL_CTX_get_keylog_callback(
|
|||
|
||||
#endif /* OPENSSL_EXTRA */
|
||||
|
||||
#ifndef NO_CERT
|
||||
#ifndef NO_CERTS
|
||||
#define WOLFSSL_X509_INCLUDED
|
||||
#include "src/x509.c"
|
||||
#endif
|
||||
|
|
|
@ -14583,7 +14583,7 @@ void wolfSSL_X509_ATTRIBUTE_free(WOLFSSL_X509_ATTRIBUTE* attr)
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif /* !NO_CERT */
|
||||
#endif /* !NO_CERTS */
|
||||
|
||||
#endif /* !WOLFCRYPT_ONLY */
|
||||
|
||||
|
|
|
@ -3534,7 +3534,7 @@ int CheckBitString(const byte* input, word32* inOutIdx, int* len,
|
|||
((defined(HAVE_ED25519) || defined(HAVE_ED448)) && \
|
||||
(defined(WOLFSSL_CERT_GEN) || defined(WOLFSSL_KEY_GEN) || \
|
||||
defined(OPENSSL_EXTRA))) || \
|
||||
(defined(WC_ENABLE_ASYM_KEY_EXPORT) && !defined(NO_CERT)) || \
|
||||
(defined(WC_ENABLE_ASYM_KEY_EXPORT) && !defined(NO_CERTS)) || \
|
||||
(!defined(NO_DSA) && !defined(HAVE_SELFTEST) && defined(WOLFSSL_KEY_GEN)) || \
|
||||
(!defined(NO_DH) && defined(WOLFSSL_DH_EXTRA))
|
||||
|
||||
|
|
Loading…
Reference in New Issue