summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschwarze <>2018-07-08 21:06:40 +0000
committerschwarze <>2018-07-08 21:06:40 +0000
commita51380503298b0c41145c83097cef24b51c30aea (patch)
tree6dde7f6d359b15934203b37ec54066ffc3fd8d6a
parent0d713dc2af5c0d2ef464c5ff570c9c178fcb5ba6 (diff)
downloadopenbsd-a51380503298b0c41145c83097cef24b51c30aea.tar.gz
openbsd-a51380503298b0c41145c83097cef24b51c30aea.tar.bz2
openbsd-a51380503298b0c41145c83097cef24b51c30aea.zip
Simplify and shorten the description of tls_init(3),
fixing an awkward wording noticed by tb@. OK tb@
-rw-r--r--src/lib/libtls/man/tls_init.38
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libtls/man/tls_init.3 b/src/lib/libtls/man/tls_init.3
index f5f63fa326..f8ee547dd6 100644
--- a/src/lib/libtls/man/tls_init.3
+++ b/src/lib/libtls/man/tls_init.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: tls_init.3,v 1.11 2018/03/19 16:34:47 jsing Exp $ 1.\" $OpenBSD: tls_init.3,v 1.12 2018/07/08 21:06:40 schwarze Exp $
2.\" 2.\"
3.\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> 3.\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org>
4.\" Copyright (c) 2016 Joel Sing <jsing@openbsd.org> 4.\" Copyright (c) 2016 Joel Sing <jsing@openbsd.org>
@@ -16,7 +16,7 @@
16.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18.\" 18.\"
19.Dd $Mdocdate: March 19 2018 $ 19.Dd $Mdocdate: July 8 2018 $
20.Dt TLS_INIT 3 20.Dt TLS_INIT 3
21.Os 21.Os
22.Sh NAME 22.Sh NAME
@@ -45,8 +45,8 @@ Both clients and servers are supported.
45The 45The
46.Fn tls_init 46.Fn tls_init
47function initializes global data structures. 47function initializes global data structures.
48It may be called once before any other functions, however this is no 48Calling it manually is no
49longer necessary since it will be handled internally on demand. 49longer necessary since it is invoked internally when needed.
50It may be called more than once, and may be called concurrently. 50It may be called more than once, and may be called concurrently.
51.Pp 51.Pp
52Before a connection is created, a configuration must be created. 52Before a connection is created, a configuration must be created.