summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_ext.c
diff options
context:
space:
mode:
authorjsing <>2015-02-10 08:33:10 +0000
committerjsing <>2015-02-10 08:33:10 +0000
commit703b21ab4c794e7b44460fa1cee2b085dee30874 (patch)
tree91eb81a2adf39e9987776c79abd1fe96e5ef6b76 /src/lib/libcrypto/x509/x509_ext.c
parent6147cf79cb9a00a2d12b54100ee049dfb7920375 (diff)
downloadopenbsd-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/x509/x509_ext.c')
-rw-r--r--src/lib/libcrypto/x509/x509_ext.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509/x509_ext.c b/src/lib/libcrypto/x509/x509_ext.c
index a5b5430ad4..e90befaba1 100644
--- a/src/lib/libcrypto/x509/x509_ext.c
+++ b/src/lib/libcrypto/x509/x509_ext.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_ext.c,v 1.8 2014/07/11 08:44:49 jsing Exp $ */ 1/* $OpenBSD: x509_ext.c,v 1.9 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 *
@@ -230,6 +230,3 @@ X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
230{ 230{
231 return X509V3_add1_i2d(&x->extensions, nid, value, crit, flags); 231 return X509V3_add1_i2d(&x->extensions, nid, value, crit, flags);
232} 232}
233
234IMPLEMENT_STACK_OF(X509_EXTENSION)
235IMPLEMENT_ASN1_SET_OF(X509_EXTENSION)