From: John Crispin <john@openwrt.org>
Date: Wed, 17 Oct 2012 21:53:46 +0000 (+0000)
Subject: Fix broadcast DHCP client startup option in dhcp.sh
X-Git-Tag: reboot~12582
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=c2b8d1a6190e02e48a55d852ca7ab5ed1a9cd3ac;p=openwrt%2Fstaging%2Fxback.git

Fix broadcast DHCP client startup option in dhcp.sh

Signed-off-by: Hans Dedecker (hans.dedecker at technicolor.com)

Fixes the DHCP request broadcasts replies option parsing

SVN-Revision: 33826
---

diff --git a/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh b/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh
index 9182d58ad8..7b1fe37806 100755
--- a/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh
+++ b/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh
@@ -26,7 +26,7 @@ proto_dhcp_setup() {
 		append dhcpopts "-O $opt"
 	done
 
-	[ "$broadcast" = 1 ] && broadcast="-O broadcast" || broadcast=
+	[ "$broadcast" = 1 ] && broadcast="-B" || broadcast=
 
 	proto_export "INTERFACE=$config"
 	proto_run_command "$config" udhcpc \