diff options
| author | naddy <> | 2022-03-31 17:27:26 +0000 |
|---|---|---|
| committer | naddy <> | 2022-03-31 17:27:26 +0000 |
| commit | 3d8be07546f5ec331a0f851b0ea88212376ebb95 (patch) | |
| tree | dd215ed7ee26566711b4b3f92093356c3f542d9e /src/lib/libssl/man/BIO_f_ssl.3 | |
| parent | 31dad1243d69de787b0589750cc4b78379c43734 (diff) | |
| download | openbsd-3d8be07546f5ec331a0f851b0ea88212376ebb95.tar.gz openbsd-3d8be07546f5ec331a0f851b0ea88212376ebb95.tar.bz2 openbsd-3d8be07546f5ec331a0f851b0ea88212376ebb95.zip | |
man pages: add missing commas between subordinate and main clauses
jmc@ dislikes a comma before "then" in a conditional, so leave those
untouched.
ok jmc@
Diffstat (limited to 'src/lib/libssl/man/BIO_f_ssl.3')
| -rw-r--r-- | src/lib/libssl/man/BIO_f_ssl.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libssl/man/BIO_f_ssl.3 b/src/lib/libssl/man/BIO_f_ssl.3 index 8643200285..5e18a85bd1 100644 --- a/src/lib/libssl/man/BIO_f_ssl.3 +++ b/src/lib/libssl/man/BIO_f_ssl.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: BIO_f_ssl.3,v 1.11 2019/06/12 09:36:30 schwarze Exp $ | 1 | .\" $OpenBSD: BIO_f_ssl.3,v 1.12 2022/03/31 17:27:18 naddy Exp $ |
| 2 | .\" full merge up to: OpenSSL f672aee4 Feb 9 11:52:40 2016 -0500 | 2 | .\" full merge up to: OpenSSL f672aee4 Feb 9 11:52:40 2016 -0500 |
| 3 | .\" selective merge up to: OpenSSL 61f805c1 Jan 16 01:01:46 2018 +0800 | 3 | .\" selective merge up to: OpenSSL 61f805c1 Jan 16 01:01:46 2018 +0800 |
| 4 | .\" | 4 | .\" |
| @@ -50,7 +50,7 @@ | |||
| 50 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 50 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 51 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 51 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
| 52 | .\" | 52 | .\" |
| 53 | .Dd $Mdocdate: June 12 2019 $ | 53 | .Dd $Mdocdate: March 31 2022 $ |
| 54 | .Dt BIO_F_SSL 3 | 54 | .Dt BIO_F_SSL 3 |
| 55 | .Os | 55 | .Os |
| 56 | .Sh NAME | 56 | .Sh NAME |
| @@ -147,7 +147,7 @@ is appended to an | |||
| 147 | .Vt SSL | 147 | .Vt SSL |
| 148 | .Vt BIO | 148 | .Vt BIO |
| 149 | using | 149 | using |
| 150 | .Xr BIO_push 3 | 150 | .Xr BIO_push 3 , |
| 151 | it is automatically used as the | 151 | it is automatically used as the |
| 152 | .Vt SSL | 152 | .Vt SSL |
| 153 | .Vt BIO Ns 's read and write | 153 | .Vt BIO Ns 's read and write |
| @@ -213,7 +213,7 @@ is 0, server mode is set. | |||
| 213 | .Fn BIO_set_ssl_renegotiate_bytes | 213 | .Fn BIO_set_ssl_renegotiate_bytes |
| 214 | sets the renegotiate byte count to | 214 | sets the renegotiate byte count to |
| 215 | .Fa num . | 215 | .Fa num . |
| 216 | When set after every | 216 | When set, after every |
| 217 | .Fa num | 217 | .Fa num |
| 218 | bytes of I/O (read and write) the SSL session is automatically renegotiated. | 218 | bytes of I/O (read and write) the SSL session is automatically renegotiated. |
| 219 | .Fa num | 219 | .Fa num |
| @@ -222,7 +222,7 @@ must be at least 512 bytes. | |||
| 222 | .Fn BIO_set_ssl_renegotiate_timeout | 222 | .Fn BIO_set_ssl_renegotiate_timeout |
| 223 | sets the renegotiate timeout to | 223 | sets the renegotiate timeout to |
| 224 | .Fa seconds . | 224 | .Fa seconds . |
| 225 | When the renegotiate timeout elapses the session is automatically renegotiated. | 225 | When the renegotiate timeout elapses, the session is automatically renegotiated. |
| 226 | .Pp | 226 | .Pp |
| 227 | .Fn BIO_get_num_renegotiates | 227 | .Fn BIO_get_num_renegotiates |
| 228 | returns the total number of session renegotiations due to I/O or timeout. | 228 | returns the total number of session renegotiations due to I/O or timeout. |
| @@ -303,7 +303,7 @@ established; the call | |||
| 303 | should be used for non blocking connect | 303 | should be used for non blocking connect |
| 304 | .Vt BIO Ns s | 304 | .Vt BIO Ns s |
| 305 | to determine if the call should be retried. | 305 | to determine if the call should be retried. |
| 306 | If an SSL connection has already been established this call has no effect. | 306 | If an SSL connection has already been established, this call has no effect. |
| 307 | .Pp | 307 | .Pp |
| 308 | .Vt SSL | 308 | .Vt SSL |
| 309 | .Vt BIO Ns s | 309 | .Vt BIO Ns s |
| @@ -325,7 +325,7 @@ using a blocking transport will never request a retry. | |||
| 325 | Since unknown | 325 | Since unknown |
| 326 | .Xr BIO_ctrl 3 | 326 | .Xr BIO_ctrl 3 |
| 327 | operations are sent through filter | 327 | operations are sent through filter |
| 328 | .Vt BIO Ns s | 328 | .Vt BIO Ns s , |
| 329 | the server name and port can be set using | 329 | the server name and port can be set using |
| 330 | .Xr BIO_set_conn_hostname 3 | 330 | .Xr BIO_set_conn_hostname 3 |
| 331 | and | 331 | and |
