diff options
author | beck <> | 2014-05-29 18:27:52 +0000 |
---|---|---|
committer | beck <> | 2014-05-29 18:27:52 +0000 |
commit | 4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66 (patch) | |
tree | ca968a1e03b93576c57aab8158bdc988383fd13a /src/lib/libssl/ssl_lib.c | |
parent | 4b16b4eb75628208ef991b55d5625a36adc0d6fd (diff) | |
download | openbsd-4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66.tar.gz openbsd-4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66.tar.bz2 openbsd-4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66.zip |
Any sane platform has stdio. Stop pretending we will ever use a platform
that does not.
"fire bomb" tedu@
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 90a94817b6..3e654117bf 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
@@ -2895,7 +2895,6 @@ SSL_set_SSL_CTX(SSL *ssl, SSL_CTX* ctx) | |||
2895 | return (ssl->ctx); | 2895 | return (ssl->ctx); |
2896 | } | 2896 | } |
2897 | 2897 | ||
2898 | #ifndef OPENSSL_NO_STDIO | ||
2899 | int | 2898 | int |
2900 | SSL_CTX_set_default_verify_paths(SSL_CTX *ctx) | 2899 | SSL_CTX_set_default_verify_paths(SSL_CTX *ctx) |
2901 | { | 2900 | { |
@@ -2908,7 +2907,6 @@ SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, | |||
2908 | { | 2907 | { |
2909 | return (X509_STORE_load_locations(ctx->cert_store, CAfile, CApath)); | 2908 | return (X509_STORE_load_locations(ctx->cert_store, CAfile, CApath)); |
2910 | } | 2909 | } |
2911 | #endif | ||
2912 | 2910 | ||
2913 | void | 2911 | void |
2914 | SSL_set_info_callback(SSL *ssl, | 2912 | SSL_set_info_callback(SSL *ssl, |