diff options
author | jsing <> | 2015-02-10 08:33:10 +0000 |
---|---|---|
committer | jsing <> | 2015-02-10 08:33:10 +0000 |
commit | 703b21ab4c794e7b44460fa1cee2b085dee30874 (patch) | |
tree | 91eb81a2adf39e9987776c79abd1fe96e5ef6b76 /src/lib/libcrypto/asn1/a_int.c | |
parent | 6147cf79cb9a00a2d12b54100ee049dfb7920375 (diff) | |
download | openbsd-703b21ab4c794e7b44460fa1cee2b085dee30874.tar.gz openbsd-703b21ab4c794e7b44460fa1cee2b085dee30874.tar.bz2 openbsd-703b21ab4c794e7b44460fa1cee2b085dee30874.zip |
The IMPLEMENT_STACK_OF and IMPLEMENT_ASN1_SET_OF macros were turned into
noops around 15 years ago. Remove multiple occurances of both that still
exist in the code today.
Diffstat (limited to 'src/lib/libcrypto/asn1/a_int.c')
-rw-r--r-- | src/lib/libcrypto/asn1/a_int.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/a_int.c b/src/lib/libcrypto/asn1/a_int.c index ba2895db6b..fe6ce5ee9f 100644 --- a/src/lib/libcrypto/asn1/a_int.c +++ b/src/lib/libcrypto/asn1/a_int.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_int.c,v 1.24 2014/07/11 08:44:47 jsing Exp $ */ | 1 | /* $OpenBSD: a_int.c,v 1.25 2015/02/10 08:33:10 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -461,6 +461,3 @@ ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn) | |||
461 | BN_set_negative(ret, 1); | 461 | BN_set_negative(ret, 1); |
462 | return (ret); | 462 | return (ret); |
463 | } | 463 | } |
464 | |||
465 | IMPLEMENT_STACK_OF(ASN1_INTEGER) | ||
466 | IMPLEMENT_ASN1_SET_OF(ASN1_INTEGER) | ||