blob: cf45035f999dfec5bec361a7b4046470b1203df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Index: eglibc/ports/sysdeps/unix/sysv/linux/arm/check_pf.c
===================================================================
--- eglibc/ports/sysdeps/unix/sysv/linux/arm/check_pf.c (revision 5790)
+++ eglibc/ports/sysdeps/unix/sysv/linux/arm/check_pf.c (working copy)
@@ -200,16 +200,12 @@
}
if (ifam->ifa_flags & (IFA_F_DEPRECATED
- | IFA_F_TEMPORARY
| IFA_F_HOMEADDRESS))
{
struct in6ailist *newp = alloca (sizeof (*newp));
newp->info.flags = (((ifam->ifa_flags & IFA_F_DEPRECATED)
? in6ai_deprecated : 0)
| ((ifam->ifa_flags
- & IFA_F_TEMPORARY)
- ? in6ai_temporary : 0)
- | ((ifam->ifa_flags
& IFA_F_HOMEADDRESS)
? in6ai_homeaddress : 0));
memcpy (newp->info.addr, address ?: local,
|