diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-07 10:54:03 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-07 10:54:03 +0000 |
commit | 68235416db66012e359f21c612cca18a63f290b7 (patch) | |
tree | 2b8b1eedf300bbb23974249ed46fda81befa89de /package/netifd | |
parent | 3613a9f2f88797c6053e0dfcc252b33aeac52a3a (diff) | |
download | master-187ad058-68235416db66012e359f21c612cca18a63f290b7.tar.gz master-187ad058-68235416db66012e359f21c612cca18a63f290b7.tar.bz2 master-187ad058-68235416db66012e359f21c612cca18a63f290b7.zip |
[package] netifd: fix typo in dhcp protocol handler, fixes reqopt handling (#11609)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32098 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/netifd')
-rwxr-xr-x | package/netifd/files/lib/netifd/proto/dhcp.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/netifd/files/lib/netifd/proto/dhcp.sh b/package/netifd/files/lib/netifd/proto/dhcp.sh index 1080dbf5ed..70cfc86d18 100755 --- a/package/netifd/files/lib/netifd/proto/dhcp.sh +++ b/package/netifd/files/lib/netifd/proto/dhcp.sh @@ -22,7 +22,7 @@ proto_dhcp_setup() { local opt dhcpopts for opt in $reqopts; do - append dhcpopts "-O opt" + append dhcpopts "-O $opt" done [ "$broadcast" = 1 ] && broadcast="-O broadcast" || broadcast= |