Module Name: src
Committed By: uwe
Date: Tue Jun 6 23:31:01 UTC 2023
Modified Files:
src/lib/libc/sys: socket.2
Log Message:
socket(2): fix macro invocation in a column
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 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.47 src/lib/libc/sys/socket.2:1.48
--- src/lib/libc/sys/socket.2:1.47 Tue Jun 6 23:29:16 2023
+++ src/lib/libc/sys/socket.2 Tue Jun 6 23:31:01 2023
@@ -1,4 +1,4 @@
-.\" $NetBSD: socket.2,v 1.47 2023/06/06 23:29:16 uwe Exp $
+.\" $NetBSD: socket.2,v 1.48 2023/06/06 23:31:01 uwe Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -96,7 +96,11 @@ The following flags are valid:
.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 Er EPIPE instead of raising Dv SIGPIPE .
+.It Dv SOCK_NOSIGPIPE Ta Return Xo
+.Er EPIPE
+instead of raising
+.Dv SIGPIPE .
+.Xc
.El
.Pp
The