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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33826 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
John Crispin 2012-10-17 21:53:46 +00:00
parent fb47a917c2
commit f09f3dbe85
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ proto_dhcp_setup() {
append dhcpopts "-O $opt" append dhcpopts "-O $opt"
done done
[ "$broadcast" = 1 ] && broadcast="-O broadcast" || broadcast= [ "$broadcast" = 1 ] && broadcast="-B" || broadcast=
proto_export "INTERFACE=$config" proto_export "INTERFACE=$config"
proto_run_command "$config" udhcpc \ proto_run_command "$config" udhcpc \