diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2014-05-29 18:27:53 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2014-05-29 18:27:53 +0000 |
commit | 9609d19ba5b5137350eedd2f727a8c73998db85d (patch) | |
tree | 625716edc37542043146646a760b403afb93e38e /lib/libssl/ssl.h | |
parent | 36a818389a2e8f13f09ee165082ae5b02aa3a395 (diff) |
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.h')
-rw-r--r-- | lib/libssl/ssl.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 69c0bb00e27..31bc197b54c 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1627,7 +1627,6 @@ int SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, const unsigned char *d, long len); int SSL_use_certificate(SSL *ssl, X509 *x); int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len); -#ifndef OPENSSL_NO_STDIO int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type); int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type); int SSL_use_certificate_file(SSL *ssl, const char *file, int type); @@ -1640,7 +1639,6 @@ int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs, const char *file); int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs, const char *dir); -#endif void SSL_load_error_strings(void ); const char *SSL_state_string(const SSL *s); |