diff options
author | 2015-02-22 15:19:56 +0000 | |
---|---|---|
committer | 2015-02-22 15:19:56 +0000 | |
commit | 543dd1b87a6c9043fc76fe25dde04b595e0b86f0 (patch) | |
tree | aa7a56e11e251676291890b6909af2ce44067fb7 /lib/libssl/src | |
parent | Update for recent verify related naming changes. (diff) | |
download | wireguard-openbsd-543dd1b87a6c9043fc76fe25dde04b595e0b86f0.tar.xz wireguard-openbsd-543dd1b87a6c9043fc76fe25dde04b595e0b86f0.zip |
Remove IMPLEMENT_STACK_OF noops.
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/asn1/asn_mime.c | 3 | ||||
-rw-r--r-- | lib/libssl/src/ssl/ssl_lib.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/libssl/src/crypto/asn1/asn_mime.c b/lib/libssl/src/crypto/asn1/asn_mime.c index 4759965489f..1d82f1a76fd 100644 --- a/lib/libssl/src/crypto/asn1/asn_mime.c +++ b/lib/libssl/src/crypto/asn1/asn_mime.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asn_mime.c,v 1.25 2015/02/10 11:22:21 jsing Exp $ */ +/* $OpenBSD: asn_mime.c,v 1.26 2015/02/22 15:19:56 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -87,7 +87,6 @@ typedef struct { } MIME_HEADER; DECLARE_STACK_OF(MIME_HEADER) -IMPLEMENT_STACK_OF(MIME_HEADER) static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags, const ASN1_ITEM *it); diff --git a/lib/libssl/src/ssl/ssl_lib.c b/lib/libssl/src/ssl/ssl_lib.c index 34f83089201..32feaa57e9e 100644 --- a/lib/libssl/src/ssl/ssl_lib.c +++ b/lib/libssl/src/ssl/ssl_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_lib.c,v 1.98 2015/02/11 03:19:37 doug Exp $ */ +/* $OpenBSD: ssl_lib.c,v 1.99 2015/02/22 15:19:56 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -3068,5 +3068,4 @@ SSL_cache_hit(SSL *s) return (s->hit); } -IMPLEMENT_STACK_OF(SSL_CIPHER) IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id); |