diff options
author | Tom Gundersen <teg@jklm.no> | 2016-01-20 17:45:42 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2016-01-20 17:45:42 +0100 |
commit | bedfbf8d335bddd6c320c1ac7f2a92de6bdb784a (patch) | |
tree | f2f9948ea0422d629786ea7629090ce7b0ad94a1 /src/basic | |
parent | d90833c93c5fd171440d0d5bbe42f5aab88e393f (diff) | |
parent | f217be196ef831df7226bfd5ee6f10149d5b5787 (diff) |
Merge pull request #2337 from dhxgit/patch-1
Fix IPv6PrivacyExtension (networkd-ndisc.c)
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/missing.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/basic/missing.h b/src/basic/missing.h index 2d2785bead..c187afa287 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -974,6 +974,10 @@ static inline int setns(int fd, int nstype) { #define IFA_FLAGS 8 #endif +#ifndef IFA_F_MANAGETEMPADDR +#define IFA_F_MANAGETEMPADDR 0x100 +#endif + #ifndef IFA_F_NOPREFIXROUTE #define IFA_F_NOPREFIXROUTE 0x200 #endif |