From 9432d91efe54bd55a8d1facdbfccee9a905082bc Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 4 Oct 2024 17:35:09 +0100 Subject: [PATCH] Final fix for prior --- src/ipv4ll.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ipv4ll.c b/src/ipv4ll.c index bb73c0dd..512a504c 100644 --- a/src/ipv4ll.c +++ b/src/ipv4ll.c @@ -218,9 +218,6 @@ ipv4ll_not_found(struct interface *ifp) { struct ipv4ll_state *state; struct ipv4_addr *ia; -#ifndef KERNEL_RFC5227 - struct arp_state *astate; -#endif state = IPV4LL_STATE(ifp); ia = ipv4_iffindaddr(ifp, &state->pickedaddr, &inaddr_llmask); @@ -264,9 +261,6 @@ ipv4ll_not_found(struct interface *ifp) } rt_build(ifp->ctx, AF_INET); -#ifndef KERNEL_RFC5227 - state->arp->announced_cb = ipv4ll_announced_arp; -#endif script_runreason(ifp, "IPV4LL"); dhcpcd_daemonise(ifp->ctx); }