diff options
-rw-r--r-- | networking/libiproute/ipaddress.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index 9ec665b69..d088caf4c 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -327,6 +327,10 @@ static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM, | |||
327 | ifa->ifa_flags &= ~IFA_F_TENTATIVE; | 327 | ifa->ifa_flags &= ~IFA_F_TENTATIVE; |
328 | printf("tentative "); | 328 | printf("tentative "); |
329 | } | 329 | } |
330 | if (ifa->ifa_flags & IFA_F_DADFAILED) { | ||
331 | ifa->ifa_flags &= ~IFA_F_DADFAILED; | ||
332 | printf("dadfailed "); | ||
333 | } | ||
330 | if (ifa->ifa_flags & IFA_F_DEPRECATED) { | 334 | if (ifa->ifa_flags & IFA_F_DEPRECATED) { |
331 | ifa->ifa_flags &= ~IFA_F_DEPRECATED; | 335 | ifa->ifa_flags &= ~IFA_F_DEPRECATED; |
332 | printf("deprecated "); | 336 | printf("deprecated "); |