net.cc: Remove extra braces.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Alexey Pavlov 2015-03-13 10:38:49 +01:00 committed by Corinna Vinschen
parent 63b41daeb6
commit aaa7d1f14a
No known key found for this signature in database
GPG key ID: F536069DAE444FA0
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2015-03-13 Alexey Pavlov <alexpux@gmail.com>
* net.cc (in6addr_any): Remove redundant braces.
(in6addr_loopback): Ditto.
2015-03-12 Alexey Pavlov <alexpux@gmail.com>
* include/cygwin/version.h: Fix typo.

View file

@ -79,8 +79,8 @@ extern "C"
const unsigned char *);
} /* End of "C" section */
const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}};
const struct in6_addr in6addr_loopback = {{IN6ADDR_LOOPBACK_INIT}};
const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
static fhandler_socket *
get (const int fd)