Merge pull request #204 from kaleb-himes/ZD10204-alt-name-to-cert

correct logic in PP check
pull/207/head
David Garske 2020-05-08 15:03:29 -07:00 committed by GitHub
commit 1ff7ba3418
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ void free_things(byte** a, byte** b, byte** c, ecc_key* d, ecc_key* e,
#endif
int main(void) {
#if !defined(WOLFSSL_CERT_REQ) || !defined(WOLFSSL_CERT_GEN) && \
#if !defined(WOLFSSL_CERT_REQ) || !defined(WOLFSSL_CERT_GEN) || \
!defined(WOLFSSL_ALT_NAMES)
printf("Please compile wolfSSL with the following and try again:\n");
printf(" --enable-certreq --enable-certgen CFLAGS=-DWOLFSSL_ALT_NAMES\n");