From 229e8bd36b91ce41904348c5f9a2a72d6c8cba1e Mon Sep 17 00:00:00 2001 From: roy Date: Fri, 24 May 2024 16:07:42 +0000 Subject: [PATCH] Update to dhcpcd-10.0.8 with the following fixes: * Fixed compile without ARP * Fixed spelling of ADVERTISEMENT --- external/bsd/dhcpcd/dist/src/defs.h | 2 +- external/bsd/dhcpcd/dist/src/dhcp6.c | 2 +- external/bsd/dhcpcd/dist/src/dhcpcd.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/external/bsd/dhcpcd/dist/src/defs.h b/external/bsd/dhcpcd/dist/src/defs.h index 551395009455..58897713424d 100644 --- a/external/bsd/dhcpcd/dist/src/defs.h +++ b/external/bsd/dhcpcd/dist/src/defs.h @@ -29,7 +29,7 @@ #define DEFS_H #define PACKAGE "dhcpcd" -#define VERSION "10.0.7" +#define VERSION "10.0.8" #ifndef PRIVSEP_USER # define PRIVSEP_USER "_" PACKAGE diff --git a/external/bsd/dhcpcd/dist/src/dhcp6.c b/external/bsd/dhcpcd/dist/src/dhcp6.c index 7cc51f99c788..76a6719b5c04 100644 --- a/external/bsd/dhcpcd/dist/src/dhcp6.c +++ b/external/bsd/dhcpcd/dist/src/dhcp6.c @@ -3494,7 +3494,7 @@ dhcp6_recvif(struct interface *ifp, const char *sfrom, * To keep the same behaviour we won't do anything with * this. In the future we should make a lists of * ADVERTS and pick the "best" one. */ - logdebugx("%s: discarding ADVERTISMENT from %s", + logdebugx("%s: discarding ADVERTISEMENT from %s", ifp->name, sfrom); return; } diff --git a/external/bsd/dhcpcd/dist/src/dhcpcd.c b/external/bsd/dhcpcd/dist/src/dhcpcd.c index ccc8fbcf99d8..a94dbdacc9ba 100644 --- a/external/bsd/dhcpcd/dist/src/dhcpcd.c +++ b/external/bsd/dhcpcd/dist/src/dhcpcd.c @@ -423,8 +423,8 @@ dhcpcd_drop_af(struct interface *ifp, int stop, int af) #endif #ifdef ARP arp_drop(ifp); - } #endif + } #if !defined(DHCP6) && !defined(DHCP) UNUSED(stop);