diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-09-12 00:53:38 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-09-12 00:53:38 +0000 |
commit | b3237a11f6bed062af5f93c71908030b767e256c (patch) | |
tree | 80119352dfee4aa2457193163f658d4e3f7d0a92 /lib/libc/sys/socketpair.2 | |
parent | d9412a6c2df8ef63cd5411ed888c7458f2929719 (diff) | |
download | FreeBSD-src-b3237a11f6bed062af5f93c71908030b767e256c.zip FreeBSD-src-b3237a11f6bed062af5f93c71908030b767e256c.tar.gz |
Consistently reference file descriptors as "fd". 55 other manpages
used "fd", while these used "d" and "filedes".
MFC after: 1 week
Approved by: gjb
Approved by: re (delphij)
Diffstat (limited to 'lib/libc/sys/socketpair.2')
-rw-r--r-- | lib/libc/sys/socketpair.2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/socketpair.2 b/lib/libc/sys/socketpair.2 index 08d00d3..d3a47eb 100644 --- a/lib/libc/sys/socketpair.2 +++ b/lib/libc/sys/socketpair.2 @@ -28,7 +28,7 @@ .\" @(#)socketpair.2 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd March 19, 2013 +.Dd September 11, 2013 .Dt SOCKETPAIR 2 .Os .Sh NAME @@ -40,13 +40,13 @@ .In sys/types.h .In sys/socket.h .Ft int -.Fn socketpair "int d" "int type" "int protocol" "int *sv" +.Fn socketpair "int fd" "int type" "int protocol" "int *sv" .Sh DESCRIPTION The .Fn socketpair system call creates an unnamed pair of connected sockets in the specified domain -.Fa d , +.Fa fd , of the specified .Fa type , and using the optionally specified |