diff options
author | Christopher Faylor <me@cgf.cx> | 2002-11-28 00:40:20 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-11-28 00:40:20 +0000 |
commit | 7007fd238f3cb664c5f89d4200c7611c60813d63 (patch) | |
tree | b0ec363a3d3945f7d2bdd79d3ebf30aee0290040 | |
parent | 50f4a61a360ad3f787d0a42991eaac75d9374609 (diff) | |
download | newlib-7007fd238f3cb664c5f89d4200c7611c60813d63.zip newlib-7007fd238f3cb664c5f89d4200c7611c60813d63.tar.gz newlib-7007fd238f3cb664c5f89d4200c7611c60813d63.tar.bz2 |
* include/cygwin/version.h: Bump DLL minor number.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/fhandler_socket.cc | 12 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 2 |
3 files changed, 11 insertions, 7 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 1307b82..6487363 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2002-11-27 Christopher Faylor <cgf@redhat.com> + + * include/cygwin/version.h: Bump DLL minor number. + 2002-11-27 Mikael Ylikoski <my@post.utfors.se> * fhandler_socket.cc (fhandler_socket::sendto): Fix potential diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc index fa44f2e..00cd9e2 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); diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 44c1d75..b2ac4f9 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -42,7 +42,7 @@ details. */ changes to the DLL and is mainly informative in nature. */ #define CYGWIN_VERSION_DLL_MAJOR 1003 -#define CYGWIN_VERSION_DLL_MINOR 17 +#define CYGWIN_VERSION_DLL_MINOR 18 /* Major numbers before CYGWIN_VERSION_DLL_EPOCH are incompatible. */ |