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

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-27 14:59:26 +0300
committerMatt Caswell <matt@openssl.org>2016-10-28 11:48:54 +0300
commitf7970f303f849f0d0c8eb1717efd35b559c47964 (patch)
tree405bfd2fba9dec9570c62da80a05f4791e730951 /crypto/bio/bss_file.c
parentd62bf89cbba8df21c317fbf3fbefadeb0ca5a7f4 (diff)
Fix stdio build following BIO size_t work
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bio/bss_file.c')
-rw-r--r--crypto/bio/bss_file.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c
index 87a6f396bd..adf935f350 100644
--- a/crypto/bio/bss_file.c
+++ b/crypto/bio/bss_file.c
@@ -398,7 +398,11 @@ static int file_free(BIO *a)
static const BIO_METHOD methods_filep = {
BIO_TYPE_FILE,
"FILE pointer",
+ /* TODO: Convert to new style write function */
+ bwrite_conv,
file_write,
+ /* TODO: Convert to new style read function */
+ bread_conv,
file_read,
file_puts,
file_gets,