Skip to content

Commit cf61df1

Browse files
fix typo with NO_CERTS macro
1 parent 200f309 commit cf61df1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/configs/user_settings_wolfboot_keytools.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
#define NO_RABBIT
8787
#define NO_MD5
8888
#define NO_SIG_WRAPPER
89-
#define NO_CERT
89+
#define NO_CERTS
9090
#define NO_SESSION_CACHE
9191
#define NO_HC128
9292
#define NO_DES3

src/ssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23273,7 +23273,7 @@ wolfSSL_CTX_keylog_cb_func wolfSSL_CTX_get_keylog_callback(
2327323273

2327423274
#endif /* OPENSSL_EXTRA */
2327523275

23276-
#ifndef NO_CERT
23276+
#ifndef NO_CERTS
2327723277
#define WOLFSSL_X509_INCLUDED
2327823278
#include "src/x509.c"
2327923279
#endif

src/x509.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14583,7 +14583,7 @@ void wolfSSL_X509_ATTRIBUTE_free(WOLFSSL_X509_ATTRIBUTE* attr)
1458314583
}
1458414584
#endif
1458514585

14586-
#endif /* !NO_CERT */
14586+
#endif /* !NO_CERTS */
1458714587

1458814588
#endif /* !WOLFCRYPT_ONLY */
1458914589

wolfcrypt/src/asn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3534,7 +3534,7 @@ int CheckBitString(const byte* input, word32* inOutIdx, int* len,
35343534
((defined(HAVE_ED25519) || defined(HAVE_ED448)) && \
35353535
(defined(WOLFSSL_CERT_GEN) || defined(WOLFSSL_KEY_GEN) || \
35363536
defined(OPENSSL_EXTRA))) || \
3537-
(defined(WC_ENABLE_ASYM_KEY_EXPORT) && !defined(NO_CERT)) || \
3537+
(defined(WC_ENABLE_ASYM_KEY_EXPORT) && !defined(NO_CERTS)) || \
35383538
(!defined(NO_DSA) && !defined(HAVE_SELFTEST) && defined(WOLFSSL_KEY_GEN)) || \
35393539
(!defined(NO_DH) && defined(WOLFSSL_DH_EXTRA))
35403540

0 commit comments

Comments
 (0)