summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ts/ts_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ts/ts_lib.c')
-rw-r--r--src/lib/libcrypto/ts/ts_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ts/ts_lib.c b/src/lib/libcrypto/ts/ts_lib.c
index f08bb8701d..ac5f65df94 100644
--- a/src/lib/libcrypto/ts/ts_lib.c
+++ b/src/lib/libcrypto/ts/ts_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ts_lib.c,v 1.8 2014/07/11 08:44:49 jsing Exp $ */ 1/* $OpenBSD: ts_lib.c,v 1.9 2015/07/29 14:58:34 jsing Exp $ */
2/* Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL 2/* Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL
3 * project 2002. 3 * project 2002.
4 */ 4 */
@@ -117,7 +117,7 @@ TS_ext_print_bio(BIO *bio, const STACK_OF(X509_EXTENSION) *extensions)
117 BIO_printf(bio, ": %s\n", critical ? "critical" : ""); 117 BIO_printf(bio, ": %s\n", critical ? "critical" : "");
118 if (!X509V3_EXT_print(bio, ex, 0, 4)) { 118 if (!X509V3_EXT_print(bio, ex, 0, 4)) {
119 BIO_printf(bio, "%4s", ""); 119 BIO_printf(bio, "%4s", "");
120 M_ASN1_OCTET_STRING_print(bio, ex->value); 120 ASN1_STRING_print(bio, ex->value);
121 } 121 }
122 BIO_write(bio, "\n", 1); 122 BIO_write(bio, "\n", 1);
123 } 123 }