diff options
author | miod <> | 2014-07-10 14:28:50 +0000 |
---|---|---|
committer | miod <> | 2014-07-10 14:28:50 +0000 |
commit | c5e403c13d3c2cde5ab2efa2c9286ad92b8962af (patch) | |
tree | 2fecc5ed162402e3a46afb3ef654664fc619fd29 /src | |
parent | 3ff93b65bfbf4da2c2e0cf6b752387131854fd98 (diff) | |
download | openbsd-c5e403c13d3c2cde5ab2efa2c9286ad92b8962af.tar.gz openbsd-c5e403c13d3c2cde5ab2efa2c9286ad92b8962af.tar.bz2 openbsd-c5e403c13d3c2cde5ab2efa2c9286ad92b8962af.zip |
Fix examples description, and use less ambiguous wording.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/src/doc/crypto/BIO_push.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/src/doc/crypto/BIO_push.pod b/src/lib/libssl/src/doc/crypto/BIO_push.pod index a3e2e383a5..39c964b272 100644 --- a/src/lib/libssl/src/doc/crypto/BIO_push.pod +++ b/src/lib/libssl/src/doc/crypto/BIO_push.pod | |||
@@ -13,7 +13,7 @@ BIO_push, BIO_pop - add and remove BIOs from a chain. | |||
13 | 13 | ||
14 | =head1 DESCRIPTION | 14 | =head1 DESCRIPTION |
15 | 15 | ||
16 | The BIO_push() function appends the BIO B<append> to B<b>, it returns | 16 | The BIO_push() function appends the BIO B<append> to B<b>, and returns |
17 | B<b>. | 17 | B<b>. |
18 | 18 | ||
19 | BIO_pop() removes the BIO B<b> from a chain and returns the next BIO | 19 | BIO_pop() removes the BIO B<b> from a chain and returns the next BIO |
@@ -40,7 +40,7 @@ If the call: | |||
40 | 40 | ||
41 | BIO_push(b64, f); | 41 | BIO_push(b64, f); |
42 | 42 | ||
43 | is made then the new chain will be B<b64-chain>. After making the calls | 43 | is made then the new chain will be B<b64-f>. After making the calls |
44 | 44 | ||
45 | BIO_push(md2, b64); | 45 | BIO_push(md2, b64); |
46 | BIO_push(md1, md2); | 46 | BIO_push(md1, md2); |
@@ -54,12 +54,12 @@ by B<md1> and B<md2>. If the call: | |||
54 | 54 | ||
55 | BIO_pop(md2); | 55 | BIO_pop(md2); |
56 | 56 | ||
57 | The call will return B<b64> and the new chain will be B<md1-b64-f> data can | 57 | The call will return B<b64> and the new chain will be B<md1-b64-f>; data can |
58 | be written to B<md1> as before. | 58 | be written to B<md1> as before. |
59 | 59 | ||
60 | =head1 RETURN VALUES | 60 | =head1 RETURN VALUES |
61 | 61 | ||
62 | BIO_push() returns the end of the chain, B<b>. | 62 | BIO_push() returns the beginning of the chain, B<b>. |
63 | 63 | ||
64 | BIO_pop() returns the next BIO in the chain, or NULL if there is no next | 64 | BIO_pop() returns the next BIO in the chain, or NULL if there is no next |
65 | BIO. | 65 | BIO. |