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
2 changed files with 7 additions and 2 deletions

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)