diff options
author | tedu <> | 2014-11-07 13:57:43 +0000 |
---|---|---|
committer | tedu <> | 2014-11-07 13:57:43 +0000 |
commit | e1fc40cecc074746dfa8002682647a512fdf4906 (patch) | |
tree | ae49a74adc13f8ae8bebe513ece39d2c8efe0117 /src | |
parent | b7dcc276ffdece2ae0185fe313c2917fda047478 (diff) | |
download | openbsd-e1fc40cecc074746dfa8002682647a512fdf4906.tar.gz openbsd-e1fc40cecc074746dfa8002682647a512fdf4906.tar.bz2 openbsd-e1fc40cecc074746dfa8002682647a512fdf4906.zip |
missing outlen in tls_write decl
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libtls/tls_init.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libtls/tls_init.3 b/src/lib/libtls/tls_init.3 index 5873f15686..4de85d6911 100644 --- a/src/lib/libtls/tls_init.3 +++ b/src/lib/libtls/tls_init.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: tls_init.3,v 1.2 2014/11/02 14:45:05 jsing Exp $ | 1 | .\" $OpenBSD: tls_init.3,v 1.3 2014/11/07 13:57:43 tedu Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> | 3 | .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> |
4 | .\" | 4 | .\" |
@@ -14,7 +14,7 @@ | |||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | .\" | 16 | .\" |
17 | .Dd $Mdocdate: November 2 2014 $ | 17 | .Dd $Mdocdate: November 7 2014 $ |
18 | .Dt TLS 3 | 18 | .Dt TLS 3 |
19 | .Os | 19 | .Os |
20 | .Sh NAME | 20 | .Sh NAME |
@@ -107,7 +107,7 @@ | |||
107 | .Ft "int" | 107 | .Ft "int" |
108 | .Fn tls_read "struct tls *ctx" "void *buf" "size_t buflen" "size_t *outlen" | 108 | .Fn tls_read "struct tls *ctx" "void *buf" "size_t buflen" "size_t *outlen" |
109 | .Ft "int" | 109 | .Ft "int" |
110 | .Fn tls_write "struct tls *ctx" "const void *buf" "size_t buflen" | 110 | .Fn tls_write "struct tls *ctx" "const void *buf" "size_t buflen" "size_t *outlen" |
111 | .Sh DESCRIPTION | 111 | .Sh DESCRIPTION |
112 | The | 112 | The |
113 | .Nm tls | 113 | .Nm tls |