From 918442d1f6c0dcd59f6922337baedf24942b91c2 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Tue, 6 May 2025 18:30:39 +0200 Subject: [PATCH] Netlink: Fix fix BSD error There was a typo in the previous commit, -> instead of . --- sysdep/linux/netlink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index 8e6eb60c3..33e625b19 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -1864,8 +1864,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; -- 2.47.2