diff options
author | 2000-01-26 08:40:14 +0000 | |
---|---|---|
committer | 2000-01-26 08:40:14 +0000 | |
commit | c4f4c07b31b4abfab1d9c81f1672a2af55145075 (patch) | |
tree | ed9c58a6d9e0b3eef26b91c3dd612b607350cf7b /lib/libc/sys | |
parent | remove the yacc munging code again. This time, someone tell the ssl that this is wrong! (diff) | |
download | wireguard-openbsd-c4f4c07b31b4abfab1d9c81f1672a2af55145075.tar.xz wireguard-openbsd-c4f4c07b31b4abfab1d9c81f1672a2af55145075.zip |
document EINVAL also meaning socket family mismatch; Jean-Luc.Richier@imag.fr
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/bind.2 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/sys/bind.2 b/lib/libc/sys/bind.2 index ad560bc51d8..f77b52e2964 100644 --- a/lib/libc/sys/bind.2 +++ b/lib/libc/sys/bind.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bind.2,v 1.8 1999/06/29 14:09:50 aaron Exp $ +.\" $OpenBSD: bind.2,v 1.9 2000/01/26 08:40:14 deraadt Exp $ .\" $NetBSD: bind.2,v 1.8 1995/10/12 15:40:46 jtc Exp $ .\" .\" Copyright (c) 1983, 1993 @@ -87,6 +87,10 @@ The specified address is not available from the local machine. The specified address is already in use. .It Bq Er EINVAL The socket is already bound to an address. +.It Bq Er EINVAL +The family of the socket and that requested in +.Va name->sa_family +are not equivalent. .It Bq Er EACCES The requested address is protected, and the current user has inadequate permission to access it. |