fix whitespace.

This commit is contained in:
Daniel Pouzzner
2022-04-07 07:59:07 -05:00
parent 284ebacc57
commit 0083afc279

View File

@@ -21721,7 +21721,7 @@ static int Asn1TimeToTm(WOLFSSL_ASN1_TIME* asnTime, struct tm* tm)
tm->tm_min = (asn1TimeBuf[i] - '0') * 10; i++; tm->tm_min = (asn1TimeBuf[i] - '0') * 10; i++;
tm->tm_min += (asn1TimeBuf[i] - '0'); i++; tm->tm_min += (asn1TimeBuf[i] - '0'); i++;
tm->tm_sec = (asn1TimeBuf[i] - '0') * 10; i++; tm->tm_sec = (asn1TimeBuf[i] - '0') * 10; i++;
tm->tm_sec += (asn1TimeBuf[i] - '0'); tm->tm_sec += (asn1TimeBuf[i] - '0');
#ifdef XMKTIME #ifdef XMKTIME
/* Call XMKTIME on tm to get the tm_wday and tm_yday fields populated. */ /* Call XMKTIME on tm to get the tm_wday and tm_yday fields populated. */