Revert the size_t modifications from HEAD that had led to more
[oweals/openssl.git] / crypto / asn1 / a_time.c
index 0d618873c76ce5745b7c4210af6c4d9a70f3b6aa..577e2634022cdf007a072c839bee40480d9c87ee 100644 (file)
@@ -135,12 +135,11 @@ int ASN1_TIME_check(ASN1_TIME *t)
        }
 
 /* Convert an ASN1_TIME structure to GeneralizedTime */
-ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t,
-                                                  ASN1_GENERALIZEDTIME **out)
+ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out)
        {
        ASN1_GENERALIZEDTIME *ret;
        char *str;
-       size_t newlen;
+       int newlen;
 
        if (!ASN1_TIME_check(t)) return NULL;