From 25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Tue, 17 May 2005 00:01:48 +0000 Subject: Move cryptlib.h prior bio.h. Actually it makes sense to include cryptlib.h first everywhere in crypto and skip stdio.h and string.h [because it includes them]. --- crypto/err/err.c | 2 +- crypto/err/err_prn.c | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'crypto/err') diff --git a/crypto/err/err.c b/crypto/err/err.c index 549229bcfb..e084714383 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -112,9 +112,9 @@ #include #include #include +#include "cryptlib.h" #include #include -#include "cryptlib.h" #include #include #include diff --git a/crypto/err/err_prn.c b/crypto/err/err_prn.c index 81e34bd6ce..2224a901e5 100644 --- a/crypto/err/err_prn.c +++ b/crypto/err/err_prn.c @@ -57,9 +57,9 @@ */ #include +#include "cryptlib.h" #include #include -#include "cryptlib.h" #include #include @@ -86,7 +86,12 @@ void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u), #ifndef OPENSSL_NO_FP_API static int print_fp(const char *str, size_t len, void *fp) { - return fprintf((FILE *)fp, "%s", str); + BIO bio; + + BIO_set(&bio,BIO_s_file()); + BIO_set_fp(&bio,fp,BIO_NOCLOSE); + + return BIO_printf(&bio, "%s", str); } void ERR_print_errors_fp(FILE *fp) { -- cgit v1.2.3