net.cc: Remove extra braces.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
63b41daeb6
commit
aaa7d1f14a
|
@ -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>
|
2015-03-12 Alexey Pavlov <alexpux@gmail.com>
|
||||||
|
|
||||||
* include/cygwin/version.h: Fix typo.
|
* include/cygwin/version.h: Fix typo.
|
||||||
|
|
|
@ -79,8 +79,8 @@ extern "C"
|
||||||
const unsigned char *);
|
const unsigned char *);
|
||||||
} /* End of "C" section */
|
} /* End of "C" section */
|
||||||
|
|
||||||
const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}};
|
const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
|
||||||
const struct in6_addr in6addr_loopback = {{IN6ADDR_LOOPBACK_INIT}};
|
const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
|
||||||
|
|
||||||
static fhandler_socket *
|
static fhandler_socket *
|
||||||
get (const int fd)
|
get (const int fd)
|
||||||
|
|
Loading…
Reference in New Issue