diff options
author | 2018-08-27 16:48:12 +0000 | |
---|---|---|
committer | 2018-08-27 16:48:12 +0000 | |
commit | 2ddd511d3d48106e32384b1be7cc7e1fca3fa4b4 (patch) | |
tree | 5ccf50fb61decc46c754d52742839148d7d809df /lib/libssl/s3_lib.c | |
parent | Simplify new session ticket encoding/generation. (diff) | |
download | wireguard-openbsd-2ddd511d3d48106e32384b1be7cc7e1fca3fa4b4.tar.xz wireguard-openbsd-2ddd511d3d48106e32384b1be7cc7e1fca3fa4b4.zip |
Add some missing statics.
Diffstat (limited to 'lib/libssl/s3_lib.c')
-rw-r--r-- | lib/libssl/s3_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/s3_lib.c b/lib/libssl/s3_lib.c index 1d8eff9fb6f..6e12bf95032 100644 --- a/lib/libssl/s3_lib.c +++ b/lib/libssl/s3_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_lib.c,v 1.168 2018/08/24 17:30:32 jsing Exp $ */ +/* $OpenBSD: s3_lib.c,v 1.169 2018/08/27 16:48:12 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -2082,14 +2082,14 @@ _SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *cert) return 1; } -int +static int _SSL_CTX_get_extra_chain_certs(SSL_CTX *ctx, STACK_OF(X509) **certs) { *certs = ctx->extra_certs; return 1; } -int +static int _SSL_CTX_clear_extra_chain_certs(SSL_CTX *ctx) { sk_X509_pop_free(ctx->extra_certs, X509_free); |