aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-01-29 17:06:07 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-01-29 17:06:07 +0000
commita0b2eba08cbb4aa2f8164a9a12b24fef74d64a00 (patch)
treee74e4366b37e2d63d0f36ffab891647eec8623d2 /package/base-files
parente146d9b3861ccf8cfdceb54c628d23537484a4f5 (diff)
downloadupstream-a0b2eba08cbb4aa2f8164a9a12b24fef74d64a00.tar.gz
upstream-a0b2eba08cbb4aa2f8164a9a12b24fef74d64a00.tar.bz2
upstream-a0b2eba08cbb4aa2f8164a9a12b24fef74d64a00.zip
base-files: fix a typo in processing of additional dhcp request opts
SVN-Revision: 25239
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index b59b1f2326..4a6cb7cb47 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -363,7 +363,7 @@ setup_interface() {
# additional request options
local opt dhcpopts
for opt in $reqopts; do
- append dhcpopts -O "$opt"
+ append dhcpopts "-O $opt"
done
# don't stay running in background if dhcp is not the main proto on the interface (e.g. when using pptp)