summaryrefslogtreecommitdiffstats
path: root/crypto/ts
diff options
context:
space:
mode:
authorMichal Bozon <bozon@cesnet.cz>2014-11-12 15:59:04 +0000
committerMatt Caswell <matt@openssl.org>2014-11-12 20:52:52 +0000
commit297a8fd4aca359ad555a795023ec9a4dc00db23f (patch)
tree147faebe79dbddb9542814b4ae0835c039affa32 /crypto/ts
parent5b3a5e3e901fe673749b14f3477cd5d16f40fd06 (diff)
Correct timestamp output when clock_precision_digits > 0
PR#3535 Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'crypto/ts')
-rw-r--r--crypto/ts/ts_rsp_sign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ts/ts_rsp_sign.c b/crypto/ts/ts_rsp_sign.c
index df09e17834..3c48352366 100644
--- a/crypto/ts/ts_rsp_sign.c
+++ b/crypto/ts/ts_rsp_sign.c
@@ -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);