PR: 2606
authorDr. Stephen Henson <steve@openssl.org>
Fri, 23 Sep 2011 13:39:23 +0000 (13:39 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 23 Sep 2011 13:39:23 +0000 (13:39 +0000)
Submitted by: Christoph Viethen <cv@kawo2.rwth-aachen.de>
Reviewed by: steve

Handle timezones correctly in UTCTime.

crypto/x509/x509_vfy.c

index b32c47b31b9a95b5d7a695d99c872b9b6938c316..18048da68c7fea7bd53ead71a5a4fed4be9a77d4 100644 (file)
@@ -1774,7 +1774,7 @@ int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
        atm.length=sizeof(buff2);
        atm.data=(unsigned char *)buff2;
 
-       if (X509_time_adj(&atm,-offset*60, cmp_time) == NULL)
+       if (X509_time_adj(&atm, offset*60, cmp_time) == NULL)
                return 0;
 
        if (ctm->type == V_ASN1_UTCTIME)