From 0083afc2799031a2b380ea1618bc0e15dd1e42ee Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Thu, 7 Apr 2022 07:59:07 -0500 Subject: [PATCH] fix whitespace. --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index ded081f10..cc7a65aef 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -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'); i++; tm->tm_sec = (asn1TimeBuf[i] - '0') * 10; i++; - tm->tm_sec += (asn1TimeBuf[i] - '0'); + tm->tm_sec += (asn1TimeBuf[i] - '0'); #ifdef XMKTIME /* Call XMKTIME on tm to get the tm_wday and tm_yday fields populated. */