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/libcrypto/x509/x509_vfy.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/libcrypto/x509/x509_vfy.h')
-rw-r--r-- | lib/libcrypto/x509/x509_vfy.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509_vfy.h b/lib/libcrypto/x509/x509_vfy.h index 1766e3cd219..8f69f919ad4 100644 --- a/lib/libcrypto/x509/x509_vfy.h +++ b/lib/libcrypto/x509/x509_vfy.h @@ -445,11 +445,9 @@ int X509_STORE_get_by_subject(X509_STORE_CTX *vs,int type,X509_NAME *name, int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl, char **ret); -#ifndef OPENSSL_NO_STDIO int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type); int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type); int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type); -#endif X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method); @@ -465,11 +463,9 @@ int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, int len, X509_OBJECT *ret); int X509_LOOKUP_shutdown(X509_LOOKUP *ctx); -#ifndef OPENSSL_NO_STDIO int X509_STORE_load_locations (X509_STORE *ctx, const char *file, const char *dir); int X509_STORE_set_default_paths(X509_STORE *ctx); -#endif int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); |