diff options
author | miod <> | 2015-02-13 21:48:21 +0000 |
---|---|---|
committer | miod <> | 2015-02-13 21:48:21 +0000 |
commit | 8ada175e78d2c903a29a88cb6772569b9ebb01b1 (patch) | |
tree | 0939a5129caefe503204b09d2272237957bbbf7a /src | |
parent | e868cd83f9f4f32fb6308f614b4d397de1e0276d (diff) | |
download | openbsd-8ada175e78d2c903a29a88cb6772569b9ebb01b1.tar.gz openbsd-8ada175e78d2c903a29a88cb6772569b9ebb01b1.tar.bz2 openbsd-8ada175e78d2c903a29a88cb6772569b9ebb01b1.zip |
End sentences with dots.
Diffstat (limited to 'src')
-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 | ||