From: Hans Dedecker Date: Tue, 31 Jan 2017 21:07:08 +0000 (+0100) Subject: odhcpd: fix coding style X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=83d72cf224956eb08453051744649df89b217203 odhcpd: fix coding style Signed-off-by: Hans Dedecker --- diff --git a/src/odhcpd.c b/src/odhcpd.c index bf1d496..b1e89b3 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -292,19 +292,20 @@ out: int odhcpd_get_linklocal_interface_address(int ifindex, struct in6_addr *lladdr) { - int status = -1; - struct sockaddr_in6 addr = {AF_INET6, 0, 0, ALL_IPV6_ROUTERS, ifindex}; - socklen_t alen = sizeof(addr); - int sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6); - - if (!connect(sock, (struct sockaddr*)&addr, sizeof(addr)) && - !getsockname(sock, (struct sockaddr*)&addr, &alen)) { - *lladdr = addr.sin6_addr; - status = 0; - } + int status = -1; + struct sockaddr_in6 addr = {AF_INET6, 0, 0, ALL_IPV6_ROUTERS, ifindex}; + socklen_t alen = sizeof(addr); + int sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6); + + if (!connect(sock, (struct sockaddr*)&addr, sizeof(addr)) && + !getsockname(sock, (struct sockaddr*)&addr, &alen)) { + *lladdr = addr.sin6_addr; + status = 0; + } + + close(sock); - close(sock); - return status; + return status; } void odhcpd_setup_route(const struct in6_addr *addr, int prefixlen,