[pkg-dhcp-commits] [SCM] ISC DHCP packaging for Debian branch, master, updated. debian/4.1.1-P1-16.1-26-g4a2456e

Andrew Pollock apollock at debian.org
Thu Aug 25 06:19:41 UTC 2011


The following commit has been merged in the master branch:
commit 4e68b6c144288c7bb469610acf16c86139c691ec
Author: Andrew Pollock <apollock at debian.org>
Date:   Wed Aug 24 22:25:59 2011 -0700

    Fix regression for MTU <= 576 handling
    
    Bug #638267

diff --git a/debian/changelog b/debian/changelog
index 356dbc4..416df2b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,8 +10,10 @@ isc-dhcp (4.2.2-1) unstable; urgency=low
   * debian/rules: applied patch from Kees Cook to call dh_link (closes: #614992)
   * debian/dhclient-script.linux: applied patch from Colin Watson to make
     dhclient-script support stateless DHCPv6 (closes: #632888) 
+  * debian/dhclient-script.linux: fix regression for MTU <= 576 handling
+    (closes: #638267)
 
- -- Andrew Pollock <apollock at debian.org>  Wed, 24 Aug 2011 22:23:54 -0700
+ -- Andrew Pollock <apollock at debian.org>  Wed, 24 Aug 2011 22:25:25 -0700
 
 isc-dhcp (4.1.1-P1-18) unstable; urgency=low
 
diff --git a/debian/dhclient-script.linux b/debian/dhclient-script.linux
index adaf640..5bc9eac 100644
--- a/debian/dhclient-script.linux
+++ b/debian/dhclient-script.linux
@@ -149,7 +149,7 @@ fi
 # problems with UDP traffic, among other things.  As such,
 # disallow MTUs from 576 and below by default, so that broken
 # MTUs are ignored, but higher stuff is allowed (1492, 1500, etc).
-if [ -z "$new_interface_mtu" ] || [ "$new_interface_mtu" -lt 576 ]; then
+if [ -z "$new_interface_mtu" ] || [ "$new_interface_mtu" -le 576 ]; then
     new_interface_mtu=''
 fi
 if [ -n "$IF_METRIC" ]; then

-- 
ISC DHCP packaging for Debian



More information about the pkg-dhcp-commits mailing list