* include/cygwin/version.h: Bump DLL minor number.
This commit is contained in:
parent
50f4a61a36
commit
7007fd238f
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue