about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/sendmsg.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2008-07-02 09:53:29 +0000
committerRoland McGrath <roland@gnu.org>2008-07-02 09:53:29 +0000
commite66ecb226ed6991d0c39a0daf7730e65fe555c6c (patch)
treeca2f000a788dc0c929ffd79917fbd39fa56406f3 /sysdeps/mach/hurd/sendmsg.c
parentcc9f65ce82d4995e776464a1656587c39f6b14bb (diff)
downloadglibc-e66ecb226ed6991d0c39a0daf7730e65fe555c6c.tar.gz
glibc-e66ecb226ed6991d0c39a0daf7730e65fe555c6c.tar.xz
glibc-e66ecb226ed6991d0c39a0daf7730e65fe555c6c.zip
2008-07-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
	* sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
	* hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
	* sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
	__hurd_dfail.
	* sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise
	* sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise
	* sysdeps/mach/hurd/send.c (__send): Likewise
	* sysdeps/mach/hurd/sendfrom.c (__sendfrom): Likewise
	* sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise
Diffstat (limited to 'sysdeps/mach/hurd/sendmsg.c')
-rw-r--r--sysdeps/mach/hurd/sendmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/sendmsg.c b/sysdeps/mach/hurd/sendmsg.c
index 5fdfd734ec..a9d1c8c1d4 100644
--- a/sysdeps/mach/hurd/sendmsg.c
+++ b/sysdeps/mach/hurd/sendmsg.c
@@ -149,7 +149,7 @@ __libc_sendmsg (int fd, const struct msghdr *message, int flags)
   if (dealloc)
     __vm_deallocate (__mach_task_self (), data.addr, len);
 
-  return err ? __hurd_dfail (fd, err) : amount;
+  return err ? __hurd_sockfail (fd, flags, err) : amount;
 }
 
 weak_alias (__libc_sendmsg, sendmsg)