Module Name: src
Committed By: uwe
Date: Thu Jun 8 00:27:34 UTC 2023
Modified Files:
src/lib/libc/sys: socket.2
Log Message:
socket(2): change type flags list back to -tag
On second thought, convert the list of type flags back to -tag, but
don't make it -compact. This way it's easier to see that it's related
to the list above.
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/lib/libc/sys/socket.2
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/socket.2
diff -u src/lib/libc/sys/socket.2:1.48 src/lib/libc/sys/socket.2:1.49
--- src/lib/libc/sys/socket.2:1.48 Tue Jun 6 23:31:01 2023
+++ src/lib/libc/sys/socket.2 Thu Jun 8 00:27:34 2023
@@ -1,4 +1,4 @@
-.\" $NetBSD: socket.2,v 1.48 2023/06/06 23:31:01 uwe Exp $
+.\" $NetBSD: socket.2,v 1.49 2023/06/08 00:27:34 uwe Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -93,14 +93,16 @@ The following flags can be or'ed to the
file descriptor:
The following flags are valid:
.Pp
-.Bl -column -offset indent ".Dv SOCK_NOSIGPIPE"
-.It Dv SOCK_CLOEXEC Ta Set the close on exec property.
-.It Dv SOCK_NONBLOCK Ta Set non-blocking I/O.
-.It Dv SOCK_NOSIGPIPE Ta Return Xo
+.Bl -tag -offset indent -width Dv
+.It Dv SOCK_CLOEXEC
+Set the close on exec property.
+.It Dv SOCK_NONBLOCK
+Set non-blocking I/O.
+.It Dv SOCK_NOSIGPIPE
+Return
.Er EPIPE
instead of raising
.Dv SIGPIPE .
-.Xc
.El
.Pp
The