1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-07 23:19:02 +00:00

Whitespace.

This commit is contained in:
david
2011-12-22 02:37:40 +00:00
parent 5be27e7aad
commit a725ad4248

View File

@@ -393,7 +393,7 @@ int do_listen(int type, int proto, const union sockaddr_u *srcaddr_u)
if (srcaddr_u->storage.ss_family == AF_INET6) {
int set = 1;
/* Tell it to not try and bind to IPV4 */
if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &set, sizeof(set))== -1)
if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &set, sizeof(set)) == -1)
die("Unable to set IPV6 socket to bind only to IPV6");
}
#endif