diff options
author | 2018-04-25 07:10:39 +0000 | |
---|---|---|
committer | 2018-04-25 07:10:39 +0000 | |
commit | 0a4fabb92f4ba497692f2b5aec4587a47504521c (patch) | |
tree | 676c6937b6a9e9f046932d250549c5b6252c1288 /lib/libssl/ssl_cert.c | |
parent | you can't have wsmoused and x mouse together ;( (diff) | |
download | wireguard-openbsd-0a4fabb92f4ba497692f2b5aec4587a47504521c.tar.xz wireguard-openbsd-0a4fabb92f4ba497692f2b5aec4587a47504521c.zip |
OpenSSL started adding const to functions all over the place. Make all
our libssl functions match theirs wrt const, except for BIO_f_ssl(3)
which will be fixed in a later step.
this went through a i386 bulk by sthen
ok jsing
Diffstat (limited to 'lib/libssl/ssl_cert.c')
-rw-r--r-- | lib/libssl/ssl_cert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_cert.c b/lib/libssl/ssl_cert.c index a244353b885..a01f484578d 100644 --- a/lib/libssl/ssl_cert.c +++ b/lib/libssl/ssl_cert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_cert.c,v 1.66 2017/08/12 02:55:22 jsing Exp $ */ +/* $OpenBSD: ssl_cert.c,v 1.67 2018/04/25 07:10:39 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -454,7 +454,7 @@ set_client_CA_list(STACK_OF(X509_NAME) **ca_list, } STACK_OF(X509_NAME) * -SSL_dup_CA_list(STACK_OF(X509_NAME) *sk) +SSL_dup_CA_list(const STACK_OF(X509_NAME) *sk) { int i; STACK_OF(X509_NAME) *ret; |