PR: 2606
authorDr. Stephen Henson <steve@openssl.org>
Fri, 23 Sep 2011 13:39:35 +0000 (13:39 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 23 Sep 2011 13:39:35 +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 0381c4a5028543d7473a5d281a235728a4299189..b0779db0231b314d8fcfe009d6e2cbb985585da9 100644 (file)
@@ -1727,7 +1727,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)