From 3befffa39dbaf2688d823fcf2bdfc07d2487be48 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 20 Oct 2016 15:18:39 +0100 Subject: Create BIO_write_ex() which handles size_t arguments Also extend BIO_METHOD to be able to supply an implementation for the new BIO_write_ex function. Reviewed-by: Richard Levitte --- crypto/bio/bss_file.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto/bio/bss_file.c') diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c index 00684ae640..87a6f396bd 100644 --- a/crypto/bio/bss_file.c +++ b/crypto/bio/bss_file.c @@ -51,6 +51,8 @@ static int file_free(BIO *data); 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, -- cgit v1.2.3