From: Maria Matejka Date: Tue, 6 May 2025 16:30:39 +0000 (+0200) Subject: Netlink: Fix fix BSD error X-Git-Tag: v3.1.1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1b1d4e2b3261f0aeca0b64c7b73ad972bb36043;p=thirdparty%2Fbird.git Netlink: Fix fix BSD error There was a typo in the previous commit, -> instead of . --- diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index e6fb06581..9042a56f0 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -1870,8 +1870,8 @@ nl_parse_route(struct nl_parse_state *s, struct nlmsghdr *h) return; #ifdef CONFIG_ASSUME_ONLINK - if (krt_assume_onlink(nhad->nh.iface, ipa_is_ip6(nhad->nh.gw))) - nhad->nh.flags |= RNF_ONLINK; + if (krt_assume_onlink(nhad.nh.iface, ipa_is_ip6(nhad.nh.gw))) + nhad.nh.flags |= RNF_ONLINK; #endif neighbor *nbr;