Fix a couple of minor Jenkins issues.

This commit is contained in:
David Garske
2018-04-24 13:25:28 -07:00
parent 56025f38b9
commit e63afa08bd

View File

@ -4705,6 +4705,7 @@ int wc_GetDateAsCalendarTime(const byte* date, int length, byte format,
return 0; return 0;
} }
#ifdef WOLFSSL_CERT_GEN
int wc_GetCertDates(Cert* cert, struct tm* before, struct tm* after) int wc_GetCertDates(Cert* cert, struct tm* before, struct tm* after)
{ {
int ret = 0; int ret = 0;
@ -4730,6 +4731,7 @@ int wc_GetCertDates(Cert* cert, struct tm* before, struct tm* after)
return ret; return ret;
} }
#endif /* WOLFSSL_CERT_GEN */
#endif /* !NO_ASN_TIME */ #endif /* !NO_ASN_TIME */
@ -12385,7 +12387,7 @@ static int GetBasicDate(const byte* source, word32* idx, byte* date,
byte* format, int maxIdx) byte* format, int maxIdx)
{ {
int ret, length; int ret, length;
byte *datePtr = NULL; const byte *datePtr = NULL;
WOLFSSL_ENTER("GetBasicDate"); WOLFSSL_ENTER("GetBasicDate");