diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-11-07 13:57:44 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-11-07 13:57:44 +0000 |
commit | 5920cb764f56834433bbbd41d24fd6414a16a30e (patch) | |
tree | d162f33c783fd2ab222cefaba6de5dc44d3fb238 | |
parent | 6c3e06d00bfaec15e6ff4c5b2b4d4989861e61e9 (diff) |
missing outlen in tls_write decl
-rw-r--r-- | lib/libtls/tls_init.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libtls/tls_init.3 b/lib/libtls/tls_init.3 index 5873f156864..4de85d6911d 100644 --- a/lib/libtls/tls_init.3 +++ b/lib/libtls/tls_init.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tls_init.3,v 1.2 2014/11/02 14:45:05 jsing Exp $ +.\" $OpenBSD: tls_init.3,v 1.3 2014/11/07 13:57:43 tedu Exp $ .\" .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: November 2 2014 $ +.Dd $Mdocdate: November 7 2014 $ .Dt TLS 3 .Os .Sh NAME @@ -107,7 +107,7 @@ .Ft "int" .Fn tls_read "struct tls *ctx" "void *buf" "size_t buflen" "size_t *outlen" .Ft "int" -.Fn tls_write "struct tls *ctx" "const void *buf" "size_t buflen" +.Fn tls_write "struct tls *ctx" "const void *buf" "size_t buflen" "size_t *outlen" .Sh DESCRIPTION The .Nm tls |