From c14bc1a45c09a38eda7fd64934bd3606674ce5ff Mon Sep 17 00:00:00 2001 From: toddouska Date: Sat, 1 Feb 2014 11:37:08 -0800 Subject: [PATCH] fix ecc w/o openssl extra --- cyassl/ctaocrypt/asn.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cyassl/ctaocrypt/asn.h b/cyassl/ctaocrypt/asn.h index 90ba8c7a1..a609a1693 100644 --- a/cyassl/ctaocrypt/asn.h +++ b/cyassl/ctaocrypt/asn.h @@ -343,10 +343,10 @@ struct DecodedCert { word32 extAuthKeyIdSz; byte* extSubjKeyIdSrc; word32 extSubjKeyIdSz; - #ifdef HAVE_ECC - word32 pkCurveOID; /* Public Key's curve OID */ - #endif /* HAVE_ECC */ #endif +#ifdef HAVE_ECC + word32 pkCurveOID; /* Public Key's curve OID */ +#endif /* HAVE_ECC */ byte* beforeDate; int beforeDateLen; byte* afterDate;