diff options
| author | Roy Marples <roy@marples.name> | 2020-01-22 19:25:14 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2020-01-22 19:26:11 +0000 |
| commit | 6b6753c4726fcbde412052410eeea965df7ebf27 (patch) | |
| tree | e3d5f1a44cc4414921e42b3ba9a94b23996bb7fa /src/if-bsd.c | |
| parent | b5f791bf17de7477f85017041115463f69bcc90d (diff) | |
| download | dhcpcd-6b6753c4726fcbde412052410eeea965df7ebf27.tar.xz | |
BSD: Fix INET flags on RTM_NEWADDR messages.
Diffstat (limited to 'src/if-bsd.c')
| -rw-r--r-- | src/if-bsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if-bsd.c b/src/if-bsd.c index 4fb6fb69..534e2f45 100644 --- a/src/if-bsd.c +++ b/src/if-bsd.c @@ -1418,7 +1418,7 @@ if_ifa(struct dhcpcd_ctx *ctx, const struct ifa_msghdr *ifam) #endif #ifdef HAVE_IFAM_ADDRFLAGS - flags = ifam->ifam_flags; + flags = ifam->ifam_addrflags; #else flags = 0; #endif |
