Blame SOURCES/openssl-1.0.1e-timestamp.patch

1c5d99
diff -up openssl-1.0.1e/crypto/ts/ts_rsp_sign.c.timestamp openssl-1.0.1e/crypto/ts/ts_rsp_sign.c
1c5d99
--- openssl-1.0.1e/crypto/ts/ts_rsp_sign.c.timestamp	2013-02-11 16:26:04.000000000 +0100
1c5d99
+++ openssl-1.0.1e/crypto/ts/ts_rsp_sign.c	2016-01-14 17:35:44.495973697 +0100
1c5d99
@@ -977,7 +977,7 @@ TS_RESP_set_genTime_with_precision(ASN1_
1c5d99
 	if (precision > 0)
1c5d99
 	{
1c5d99
 		/* Add fraction of seconds (leave space for dot and null). */
1c5d99
-		BIO_snprintf(p, 2 + precision, ".%ld", usec);
1c5d99
+		BIO_snprintf(p, 2 + precision, ".%06ld", usec);
1c5d99
 		/* We cannot use the snprintf return value, 
1c5d99
 		   because it might have been truncated. */
1c5d99
 		p += strlen(p);