summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libssl/src/doc/crypto/BIO_read.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/src/doc/crypto/BIO_read.pod b/src/lib/libssl/src/doc/crypto/BIO_read.pod
index 37e269d055..e527bff8d0 100644
--- a/src/lib/libssl/src/doc/crypto/BIO_read.pod
+++ b/src/lib/libssl/src/doc/crypto/BIO_read.pod
@@ -9,9 +9,9 @@ BIO_read, BIO_write, BIO_gets, BIO_puts - BIO I/O functions
9 #include <openssl/bio.h> 9 #include <openssl/bio.h>
10 10
11 int BIO_read(BIO *b, void *buf, int len); 11 int BIO_read(BIO *b, void *buf, int len);
12 int BIO_gets(BIO *b,char *buf, int size); 12 int BIO_gets(BIO *b, char *buf, int size);
13 int BIO_write(BIO *b, const void *buf, int len); 13 int BIO_write(BIO *b, const void *buf, int len);
14 int BIO_puts(BIO *b,const char *buf); 14 int BIO_puts(BIO *b, const char *buf);
15 15
16=head1 DESCRIPTION 16=head1 DESCRIPTION
17 17
@@ -26,7 +26,7 @@ return the digest and other BIOs may not support BIO_gets() at all.
26 26
27BIO_write() attempts to write B<len> bytes from B<buf> to BIO B<b>. 27BIO_write() attempts to write B<len> bytes from B<buf> to BIO B<b>.
28 28
29BIO_puts() attempts to write a null terminated string B<buf> to BIO B<b> 29BIO_puts() attempts to write a null terminated string B<buf> to BIO B<b>.
30 30
31=head1 RETURN VALUES 31=head1 RETURN VALUES
32 32