diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-06-12 19:50:04 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-06-12 19:50:04 +0200 |
commit | 55b73cbbbf687f8ec40273a3780d72bedb37f818 (patch) | |
tree | 6ed931732222dcb6f82218548ff96faaa3e22d52 | |
parent | b9b6fcd85fc186e3f7f9cc780272137499a9b3a1 (diff) |
ip/dhcp6d: don't drink and code
-rw-r--r-- | sys/src/cmd/ip/dhcp6d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/ip/dhcp6d.c b/sys/src/cmd/ip/dhcp6d.c index 0aaf626f8..473f681b7 100644 --- a/sys/src/cmd/ip/dhcp6d.c +++ b/sys/src/cmd/ip/dhcp6d.c @@ -148,7 +148,7 @@ openlisten(char *net) if(strcmp(ifc->dev, "/dev/null") == 0) continue; for(lifc = ifc->lifc; lifc != nil; lifc = lifc->next){ - if(ISIPV6LINKLOCAL(lifc->ip)) + if(!ISIPV6LINKLOCAL(lifc->ip)) continue; if(fprint(cfd, "addmulti %I ff02::1:2", lifc->ip) < 0) fprint(2, "addmulti: %I: %r\n", lifc->ip); |