diff options
author | 2015-07-29 14:58:34 +0000 | |
---|---|---|
committer | 2015-07-29 14:58:34 +0000 | |
commit | 3e1a72ea05a71ae3681b404f7429cdefbdd303f8 (patch) | |
tree | b9140af598ac75edec8c3686a94547a39cda6e7c /lib/libcrypto/asn1/a_bitstr.c | |
parent | Expand obsolete M_ASN1_STRING_* macros in asn1_lib.c, apply some style(9) (diff) | |
download | wireguard-openbsd-3e1a72ea05a71ae3681b404f7429cdefbdd303f8.tar.xz wireguard-openbsd-3e1a72ea05a71ae3681b404f7429cdefbdd303f8.zip |
Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generated
assembly.
ok bcook@
Diffstat (limited to 'lib/libcrypto/asn1/a_bitstr.c')
-rw-r--r-- | lib/libcrypto/asn1/a_bitstr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/asn1/a_bitstr.c b/lib/libcrypto/asn1/a_bitstr.c index 5575a5c9394..c0259ad8152 100644 --- a/lib/libcrypto/asn1/a_bitstr.c +++ b/lib/libcrypto/asn1/a_bitstr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_bitstr.c,v 1.21 2015/07/19 18:29:31 miod Exp $ */ +/* $OpenBSD: a_bitstr.c,v 1.22 2015/07/29 14:58:34 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -65,7 +65,7 @@ int ASN1_BIT_STRING_set(ASN1_BIT_STRING *x, unsigned char *d, int len) { - return M_ASN1_BIT_STRING_set(x, d, len); + return ASN1_STRING_set(x, d, len); } int |