Fix stdio build following BIO size_t work
authorMatt Caswell <matt@openssl.org>
Thu, 27 Oct 2016 11:59:26 +0000 (12:59 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 28 Oct 2016 08:48:54 +0000 (09:48 +0100)
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/bio/bss_file.c

index 87a6f396bd421e2cf67f523ff0c1ab6d507a576f..adf935f3500ece215b75088d3345e6d2ed771619 100644 (file)
@@ -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,