diff options
author | Matt Caswell <matt@openssl.org> | 2016-10-27 13:59:26 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-10-28 10:48:54 +0200 |
commit | f7970f303f849f0d0c8eb1717efd35b559c47964 (patch) | |
tree | 405bfd2fba9dec9570c62da80a05f4791e730951 /crypto/bio | |
parent | Fix more shadowed variable warnings (diff) | |
download | openssl-f7970f303f849f0d0c8eb1717efd35b559c47964.tar.xz openssl-f7970f303f849f0d0c8eb1717efd35b559c47964.zip |
Fix stdio build following BIO size_t work
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r-- | crypto/bio/bss_file.c | 4 |
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, |