Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Braithwaite <mab@google.com>2015-06-18 01:39:49 +0300
committerAdam Langley <agl@google.com>2015-06-24 00:41:24 +0300
commit4cd4edfc3479e77f4795124e46ef312e70b8439b (patch)
tree59cd41605126ff30adf18784c174460b826545c5 /crypto/bio
parent1cb49cd2acff9826df224c9ca6cd30283ffd2608 (diff)
Restore |ERR_print_errors()|.
Change-Id: If289c4aa2804727d6c5e8386b5a2b559cf006415 Reviewed-on: https://boringssl-review.googlesource.com/5152 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/bio/bio.c b/crypto/bio/bio.c
index 5ac59119..adfbc1f3 100644
--- a/crypto/bio/bio.c
+++ b/crypto/bio/bio.c
@@ -462,6 +462,10 @@ void BIO_print_errors(BIO *bio) {
ERR_print_errors_cb(print_bio, bio);
}
+void ERR_print_errors(BIO *bio) {
+ BIO_print_errors(bio);
+}
+
/* bio_read_all reads everything from |bio| and prepends |prefix| to it. On
* success, |*out| is set to an allocated buffer (which should be freed with
* |OPENSSL_free|), |*out_len| is set to its length and one is returned. The