diff options
author | 2014-05-29 18:27:52 +0000 | |
---|---|---|
committer | 2014-05-29 18:27:52 +0000 | |
commit | 0057b87e066c5a81e2df50a7aff8d320a2f0d701 (patch) | |
tree | 7f9c5adac902880e606bd75c03f779a17c3d46ec /lib/libssl/ssl_lib.c | |
parent | kssl is dead. (diff) | |
download | wireguard-openbsd-0057b87e066c5a81e2df50a7aff8d320a2f0d701.tar.xz wireguard-openbsd-0057b87e066c5a81e2df50a7aff8d320a2f0d701.zip |
Any sane platform has stdio. Stop pretending we will ever use a platform
that does not.
"fire bomb" tedu@
Diffstat (limited to 'lib/libssl/ssl_lib.c')
-rw-r--r-- | lib/libssl/ssl_lib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c index 90a94817b68..3e654117bf0 100644 --- a/lib/libssl/ssl_lib.c +++ b/lib/libssl/ssl_lib.c @@ -2895,7 +2895,6 @@ SSL_set_SSL_CTX(SSL *ssl, SSL_CTX* ctx) return (ssl->ctx); } -#ifndef OPENSSL_NO_STDIO int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx) { @@ -2908,7 +2907,6 @@ SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, { return (X509_STORE_load_locations(ctx->cert_store, CAfile, CApath)); } -#endif void SSL_set_info_callback(SSL *ssl, |