From 92d23b339c631bca2cf12a47e05f13772f9868a0 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sat, 20 Feb 2016 15:23:28 +0000 Subject: [PATCH] Move declaration of X509_aux_print() out of #ifndef OPENSSL_NO_STDIO This isn't a file access function; it's still present. Reviewed-by: Tim Hudson Reviewed-by: Rich Salz --- include/openssl/x509.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openssl/x509.h b/include/openssl/x509.h index c5f4ecc5b5..fc77886d20 100644 --- a/include/openssl/x509.h +++ b/include/openssl/x509.h @@ -795,11 +795,11 @@ unsigned long X509_NAME_hash_old(X509_NAME *x); int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b); int X509_CRL_match(const X509_CRL *a, const X509_CRL *b); +int X509_aux_print(BIO *out, X509 *x, int indent); # ifndef OPENSSL_NO_STDIO int X509_print_ex_fp(FILE *bp, X509 *x, unsigned long nmflag, unsigned long cflag); int X509_print_fp(FILE *bp, X509 *x); -int X509_aux_print(BIO *out, X509 *x, int indent); int X509_CRL_print_fp(FILE *bp, X509_CRL *x); int X509_REQ_print_fp(FILE *bp, X509_REQ *req); int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, -- 2.40.0