diff options
author | jsing <> | 2015-07-29 14:58:34 +0000 |
---|---|---|
committer | jsing <> | 2015-07-29 14:58:34 +0000 |
commit | 2186614b2e5af6bbfcc1a9f8898ac11ea9c93faf (patch) | |
tree | ffda12d1155f37910342cc3f090b8425ad4cf03a /src/lib/libcrypto/ts/ts_lib.c | |
parent | f9a884dce706dbca9d2a61fd5ff1ba2b0491f436 (diff) | |
download | openbsd-2186614b2e5af6bbfcc1a9f8898ac11ea9c93faf.tar.gz openbsd-2186614b2e5af6bbfcc1a9f8898ac11ea9c93faf.tar.bz2 openbsd-2186614b2e5af6bbfcc1a9f8898ac11ea9c93faf.zip |
Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generated
assembly.
ok bcook@
Diffstat (limited to 'src/lib/libcrypto/ts/ts_lib.c')
-rw-r--r-- | src/lib/libcrypto/ts/ts_lib.c | 4 |
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 | } |