From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] dnsmasq 2.75: latest patch Date: Fri, 15 Jan 2016 22:15:03 +0100 Message-ID: <1452892503-350-1-git-send-email-matthias.fischer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7543696636367646813==" List-Id: --===============7543696636367646813== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable One (small) latecoming arp-patch, don't know if this is important, maybe "just for the records"... Download: http://people.ipfire.org/~mfischer/dnsmasq_275_2016_01_15 MD5: a47e090fe132c155f2d041ab4272c52b This is the compiled binary, nothing more is needed. Copy to '/usr/sbin' Stop 'dnsmasq' (/etc/init.d/dnsmasq stop) Rename (don't forget backing up the *old* version!) Start 'dnsmasq' (/etc/init.d/dnsmasq start). Signed-off-by: Matthias Fischer --- lfs/dnsmasq | 1 + src/patches/dnsmasq/049-arp_c_tidy_up.patch | 34 +++++++++++++++++++++++++++= ++ 2 files changed, 35 insertions(+) create mode 100644 src/patches/dnsmasq/049-arp_c_tidy_up.patch diff --git a/lfs/dnsmasq b/lfs/dnsmasq index 0affcf5..bdfb1f8 100644 --- a/lfs/dnsmasq +++ b/lfs/dnsmasq @@ -121,6 +121,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/046-DNSSEC_Ha= ndle_non-root_trust_anchors_and_check_we_have_a_root-trust_anchor.patch cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/047-Fix_bad_c= ache-size_calculation_when_hosts-file_read_fails.patch cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/048-Disable_D= NSSEC_for_server_domain_servers_unless_trust-anchor_provided.patch + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/049-arp_c_tid= y_up.patch cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq-Add-support-t= o-read-ISC-DHCP-lease-file.patch =20 cd $(DIR_APP) && sed -i src/config.h \ diff --git a/src/patches/dnsmasq/049-arp_c_tidy_up.patch b/src/patches/dnsmas= q/049-arp_c_tidy_up.patch new file mode 100644 index 0000000..2847eec --- /dev/null +++ b/src/patches/dnsmasq/049-arp_c_tidy_up.patch @@ -0,0 +1,34 @@ +From bb58f63ce598763231fbf320bace1dbd777afd37 Mon Sep 17 00:00:00 2001 +From: Simon Kelley +Date: Thu, 14 Jan 2016 19:23:10 +0000 +Subject: [PATCH] arp.c tidy up. + +--- + src/arp.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/arp.c b/src/arp.c +index 73a0250..968455c 100644 +--- a/src/arp.c ++++ b/src/arp.c +@@ -132,7 +132,7 @@ int find_mac(union mysockaddr *addr, unsigned char *mac,= int lazy, time_t now) + } + #endif + =09 +- /* Only accept poitive entries unless in lazy mode. */ ++ /* Only accept positive entries unless in lazy mode. */ + if (arp->status !=3D ARP_EMPTY || lazy || updated) + { + if (mac && arp->hwlen !=3D 0) +@@ -148,7 +148,7 @@ int find_mac(union mysockaddr *addr, unsigned char *mac,= int lazy, time_t now) + last =3D now; +=20 + /* Mark all non-negative entries */ +- for (arp =3D arps, up =3D &arps; arp; arp =3D arp->next) ++ for (arp =3D arps; arp; arp =3D arp->next) + if (arp->status !=3D ARP_EMPTY) + arp->status =3D ARP_MARK; + =20 +--=20 +1.7.10.4 + --=20 2.7.0 --===============7543696636367646813==--