summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_s_file.pod
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-20 09:56:18 +0100
committerMatt Caswell <matt@openssl.org>2016-10-28 09:48:54 +0100
commitb055fceb9bd8f613f39dab9df4d77b2a95231755 (patch)
treea772ae80ddbbc7e830c380ff30f7ceb453cd2e2f /doc/man3/BIO_s_file.pod
parent98e553d2ce31e2179be68d6a60b5bec765cd9768 (diff)
Document the new BIO functions introduced as part of the size_t work
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'doc/man3/BIO_s_file.pod')
-rw-r--r--doc/man3/BIO_s_file.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man3/BIO_s_file.pod b/doc/man3/BIO_s_file.pod
index e19d824290..abbcdb0e53 100644
--- a/doc/man3/BIO_s_file.pod
+++ b/doc/man3/BIO_s_file.pod
@@ -28,7 +28,7 @@ BIO_s_file() returns the BIO file method. As its name implies it
is a wrapper round the stdio FILE structure and it is a
source/sink BIO.
-Calls to BIO_read() and BIO_write() read and write data to the
+Calls to BIO_read_ex() and BIO_write_ex() read and write data to the
underlying stream. BIO_gets() and BIO_puts() are supported on file BIOs.
BIO_flush() on a file BIO calls the fflush() function on the wrapped
@@ -142,8 +142,8 @@ occurred this differs from other types of BIO which will typically return
L<BIO_seek(3)>, L<BIO_tell(3)>,
L<BIO_reset(3)>, L<BIO_flush(3)>,
-L<BIO_read(3)>,
-L<BIO_write(3)>, L<BIO_puts(3)>,
+L<BIO_read_ex(3)>,
+L<BIO_write_ex(3)>, L<BIO_puts(3)>,
L<BIO_gets(3)>, L<BIO_printf(3)>,
L<BIO_set_close(3)>, L<BIO_get_close(3)>