]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
FreeBSD isn't buggy with adding new addresses and working out
authorRoy Marples <roy@marples.name>
Thu, 23 May 2013 09:55:52 +0000 (09:55 +0000)
committerRoy Marples <roy@marples.name>
Thu, 23 May 2013 09:55:52 +0000 (09:55 +0000)
if they are new and should be tentative - it was my buggy configuraion
when I upgraded from FreeBSD 8 -> 9.

if-bsd.c

index f7f0741fb3b272194cd5bcf632566a9f8694cb4a..bc3d82fbc1a47471f04fbb10c2129f83cf968747 100644 (file)
--- a/if-bsd.c
+++ b/if-bsd.c
@@ -313,8 +313,7 @@ if_address6(const struct interface *ifp, const struct ipv6_addr *a, int action)
        strlcpy(ifa.ifra_name, ifp->name, sizeof(ifa.ifra_name));
        /*
         * We should not set IN6_IFF_TENTATIVE as the kernel should be
-        * able to work out if it's a new address or not and set it accordingly
-        * although FreeBSD seems to be buggy here.
+        * able to work out if it's a new address or not.
         *
         * We should set IN6_IFF_AUTOCONF, but the kernel won't let us.
         * This is probably a safety measure, but still it's not entirely right