From: Matt Caswell Date: Thu, 27 Oct 2016 11:59:26 +0000 (+0100) Subject: Fix stdio build following BIO size_t work X-Git-Tag: OpenSSL_1_1_1-pre1~3310 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f7970f303f849f0d0c8eb1717efd35b559c47964;p=oweals%2Fopenssl.git Fix stdio build following BIO size_t work Reviewed-by: Richard Levitte --- 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,