public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] send.2, recv.2: Fixed type of msg_controllen in struct msghdr
@ 2010-08-19  1:13 Nicholas Hunt
  2010-08-29  6:30 ` Michael Kerrisk
  0 siblings, 1 reply; 2+ messages in thread
From: Nicholas Hunt @ 2010-08-19  1:13 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 1549 bytes --]

Hello, 

This patch fixes the type of msg_controllen in the struct msghdr
definition given in send.2 and recv.2 to match the definition in glibc
and the kernel. Applies cleanly to the current head of git (sha hash:
55d56b71...).

-Nick

diff --git a/man2/recv.2 b/man2/recv.2
index 9431b5c..d5eaf33 100644
--- a/man2/recv.2
+++ b/man2/recv.2
@@ -304,7 +304,7 @@ struct msghdr {
     struct iovec *msg_iov;        /* scatter/gather array */
     size_t        msg_iovlen;     /* # elements in msg_iov */
     void         *msg_control;    /* ancillary data, see below */
-    socklen_t     msg_controllen; /* ancillary data buffer len */
+    size_t        msg_controllen; /* ancillary data buffer len */
     int           msg_flags;      /* flags on received message */
 };
 .fi
diff --git a/man2/send.2 b/man2/send.2
index c99b77a..c9e76b0 100644
--- a/man2/send.2
+++ b/man2/send.2
@@ -250,7 +250,7 @@ struct msghdr {
     struct iovec *msg_iov;        /* scatter/gather array */
     size_t        msg_iovlen;     /* # elements in msg_iov */
     void         *msg_control;    /* ancillary data, see below */
-    socklen_t     msg_controllen; /* ancillary data buffer len */
+    size_t        msg_controllen; /* ancillary data buffer len */
     int           msg_flags;      /* flags on received message */
 };
 .fi

-- 
Computer Science and Engineering, University of Washington
E-mail   : nhunt-GmWTxIRN22iJaUV4rX00uodd74u8MsAO@public.gmane.org
PGP Key  : http://students.washington.edu/nhunt/cs.asc

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-08-29  6:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-19  1:13 [patch] send.2, recv.2: Fixed type of msg_controllen in struct msghdr Nicholas Hunt
2010-08-29  6:30 ` Michael Kerrisk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox