aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-10-10 15:45:52 +0000
committerUlrich Drepper <drepper@redhat.com>1999-10-10 15:45:52 +0000
commita73b0d84418552e0b05c2107e88e0f019ecd4dee (patch)
tree0e72e7903b2154c2d314693a5cae8c959fd4510c /sysdeps
parent2293395f48cbfbd6ddf548fea8ba832e4c185356 (diff)
downloadglibc-a73b0d84418552e0b05c2107e88e0f019ecd4dee.tar
glibc-a73b0d84418552e0b05c2107e88e0f019ecd4dee.tar.gz
glibc-a73b0d84418552e0b05c2107e88e0f019ecd4dee.tar.bz2
glibc-a73b0d84418552e0b05c2107e88e0f019ecd4dee.zip
Update.
1999-10-10 Andreas Jaeger <aj@suse.de> * misc/sgtty.h: Fix typo in last patch. * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/bits/socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h
index 491b133b7a..f93e7f4eeb 100644
--- a/sysdeps/unix/sysv/linux/bits/socket.h
+++ b/sysdeps/unix/sysv/linux/bits/socket.h
@@ -203,13 +203,13 @@ enum
`sendmsg' and received by `recvmsg'. */
struct msghdr
{
- __ptr_t msg_name; /* Address to send to/receive from. */
+ void *msg_name; /* Address to send to/receive from. */
socklen_t msg_namelen; /* Length of address data. */
struct iovec *msg_iov; /* Vector of data to send/receive into. */
size_t msg_iovlen; /* Number of elements in the vector. */
- __ptr_t msg_control; /* Ancillary data (eg BSD filedesc passing). */
+ void *msg_control; /* Ancillary data (eg BSD filedesc passing). */
size_t msg_controllen; /* Ancillary data buffer length. */
int msg_flags; /* Flags on received message. */