diff options
author | miod <> | 2015-02-13 21:48:21 +0000 |
---|---|---|
committer | miod <> | 2015-02-13 21:48:21 +0000 |
commit | 1f8b585ef49501b9fcbd6f739862f7934d19a184 (patch) | |
tree | 0939a5129caefe503204b09d2272237957bbbf7a | |
parent | b384ce2bb444ac02da3a9cc93a73043b4563f647 (diff) | |
download | openbsd-1f8b585ef49501b9fcbd6f739862f7934d19a184.tar.gz openbsd-1f8b585ef49501b9fcbd6f739862f7934d19a184.tar.bz2 openbsd-1f8b585ef49501b9fcbd6f739862f7934d19a184.zip |
End sentences with dots.
-rw-r--r-- | src/lib/libssl/src/doc/crypto/BIO_read.pod | 6 |
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 | ||
27 | BIO_write() attempts to write B<len> bytes from B<buf> to BIO B<b>. | 27 | BIO_write() attempts to write B<len> bytes from B<buf> to BIO B<b>. |
28 | 28 | ||
29 | BIO_puts() attempts to write a null terminated string B<buf> to BIO B<b> | 29 | BIO_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 | ||