summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/x509/x509_ext.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2015-02-10 08:33:10 +0000
committerjsing <jsing@openbsd.org>2015-02-10 08:33:10 +0000
commitc33941b7863804a3cd2c52f5322202c5e25c6bb7 (patch)
tree8d99d53921acfbad6cb87345decace9c7867cc39 /lib/libcrypto/x509/x509_ext.c
parentForgot the EAGAIN or EINTR check on read. (diff)
downloadwireguard-openbsd-c33941b7863804a3cd2c52f5322202c5e25c6bb7.tar.xz
wireguard-openbsd-c33941b7863804a3cd2c52f5322202c5e25c6bb7.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 'lib/libcrypto/x509/x509_ext.c')
-rw-r--r--lib/libcrypto/x509/x509_ext.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509_ext.c b/lib/libcrypto/x509/x509_ext.c
index a5b5430ad41..e90befaba11 100644
--- a/lib/libcrypto/x509/x509_ext.c
+++ b/lib/libcrypto/x509/x509_ext.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509_ext.c,v 1.8 2014/07/11 08:44:49 jsing Exp $ */
+/* $OpenBSD: x509_ext.c,v 1.9 2015/02/10 08:33:10 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -230,6 +230,3 @@ X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
{
return X509V3_add1_i2d(&x->extensions, nid, value, crit, flags);
}
-
-IMPLEMENT_STACK_OF(X509_EXTENSION)
-IMPLEMENT_ASN1_SET_OF(X509_EXTENSION)