Correct timestamp output when clock_precision_digits > 0
authorMichal Bozon <bozon@cesnet.cz>
Wed, 12 Nov 2014 15:59:04 +0000 (15:59 +0000)
committerMatt Caswell <matt@openssl.org>
Wed, 12 Nov 2014 20:52:52 +0000 (20:52 +0000)
PR#3535

Reviewed-by: Stephen Henson <steve@openssl.org>
crypto/ts/ts_rsp_sign.c

index df09e17834c29794cf97a935bb3a6f9981e274b4..3c48352366bfb923909a56643df49e71cc5b88f1 100644 (file)
@@ -971,7 +971,7 @@ TS_RESP_set_genTime_with_precision(ASN1_GENERALIZEDTIME *asn1_time,
        if (precision > 0)
        {
                /* Add fraction of seconds (leave space for dot and null). */
-               BIO_snprintf(p, 2 + precision, ".%ld", usec);
+               BIO_snprintf(p, 2 + precision, ".%06ld", usec);
                /* We cannot use the snprintf return value, 
                   because it might have been truncated. */
                p += strlen(p);