Module Name: src
Committed By: wiz
Date: Fri Jun 15 15:12:49 UTC 2018
Modified Files:
src/share/man/man4: udp.4
Log Message:
Sort errors. Use \(em.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/share/man/man4/udp.4
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man4/udp.4
diff -u src/share/man/man4/udp.4:1.15 src/share/man/man4/udp.4:1.16
--- src/share/man/man4/udp.4:1.15 Thu May 31 07:03:57 2018
+++ src/share/man/man4/udp.4 Fri Jun 15 15:12:49 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: udp.4,v 1.15 2018/05/31 07:03:57 maxv Exp $
+.\" $NetBSD: udp.4,v 1.16 2018/06/15 15:12:49 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -128,24 +128,24 @@ or
.Sh DIAGNOSTICS
A socket operation may fail with one of the following errors returned:
.Bl -tag -width [EADDRNOTAVAIL]
+.It Bq Er EADDRINUSE
+when an attempt
+is made to create a socket with a port which has already been
+allocated;
+.It Bq Er EADDRNOTAVAIL
+when an attempt is made to create a socket with a network address
+for which no network interface exists.
.It Bq Er EISCONN
when trying to establish a connection on a socket which
already has one, or when trying to send a datagram with the destination
address specified and the socket is already connected;
+.It Bq Er ENOBUFS
+when the system runs out of memory for
+an internal data structure;
.It Bq Er ENOTCONN
when trying to send a datagram, but
no destination address is specified, and the socket hasn't been
connected;
-.It Bq Er ENOBUFS
-when the system runs out of memory for
-an internal data structure;
-.It Bq Er EADDRINUSE
-when an attempt
-is made to create a socket with a port which has already been
-allocated;
-.It Bq Er EADDRNOTAVAIL
-when an attempt is made to create a socket with a network address
-for which no network interface exists.
.El
.Sh SEE ALSO
.Xr getsockopt 2 ,
@@ -169,7 +169,7 @@ for which no network interface exists.
.%R RFC
.%N 1122
.%D October 1989
-.%T "Requirements for Internet Hosts -- Communication Layers"
+.%T "Requirements for Internet Hosts \(em Communication Layers"
.Re
.Sh HISTORY
The