Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-11-28 03:41:02 +0300
committerChristopher Faylor <me@cgf.cx>2002-11-28 03:41:02 +0300
commitae799c9931d16a89bb6bfb39a1c0c095acf97535 (patch)
tree2b97d974463ae3a19e66036b774018fca704c139
parent7007fd238f3cb664c5f89d4200c7611c60813d63 (diff)
revert botched checkin
-rw-r--r--winsup/cygwin/fhandler_socket.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc
index 00cd9e275..fa44f2e03 100644
--- a/winsup/cygwin/fhandler_socket.cc
+++ b/winsup/cygwin/fhandler_socket.cc
@@ -664,12 +664,12 @@ fhandler_socket::readv (const struct iovec *const iov, const int iovcnt,
{
struct msghdr msg =
{
- .msg_name: NULL,
- .msg_namelen: 0,
- .msg_iov: (struct iovec *) iov, // const_cast
- .msg_iovlen: iovcnt,
- .msg_accrights: NULL,
- .msg_accrightslen: 0
+ msg_name: NULL,
+ msg_namelen: 0,
+ msg_iov: (struct iovec *) iov, // const_cast
+ msg_iovlen: iovcnt,
+ msg_accrights: NULL,
+ msg_accrightslen: 0
};
return recvmsg (&msg, 0, tot);