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_cert.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_cert.c')
-rw-r--r-- | lib/libssl/ssl_cert.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/ssl_cert.c b/lib/libssl/ssl_cert.c index f506ae685ff..c4099ca24fa 100644 --- a/lib/libssl/ssl_cert.c +++ b/lib/libssl/ssl_cert.c @@ -589,7 +589,6 @@ xname_cmp(const X509_NAME * const *a, const X509_NAME * const *b) return (X509_NAME_cmp(*a, *b)); } -#ifndef OPENSSL_NO_STDIO /*! * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed; * it doesn't really have anything to do with clients (except that a common use @@ -657,7 +656,6 @@ err: ERR_clear_error(); return (ret); } -#endif /*! * Add a file of certs to a stack. |