diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-06-11 13:25:58 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-06-11 13:25:58 +0000 |
commit | 6ae19d404b1b8efa3b76b781ab29f13f3f93a835 (patch) | |
tree | 8e35acd69abf7518d9db6875d666b50d13d81079 /package/netifd | |
parent | b766b6c9d5b7008ec458d7f574a6ec13596e08f5 (diff) |
[package] netifd: localize internally used shell variables (#11567)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32192 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/netifd')
-rwxr-xr-x | package/netifd/files/lib/netifd/proto/dhcp.sh | 1 | ||||
-rwxr-xr-x | package/netifd/files/lib/network/config.sh | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/package/netifd/files/lib/netifd/proto/dhcp.sh b/package/netifd/files/lib/netifd/proto/dhcp.sh index 70cfc86d18..3365cb7aeb 100755 --- a/package/netifd/files/lib/netifd/proto/dhcp.sh +++ b/package/netifd/files/lib/netifd/proto/dhcp.sh @@ -18,6 +18,7 @@ proto_dhcp_setup() { local config="$1" local iface="$2" + local ipaddr hostname clientid vendorid broadcast reqopts json_get_vars ipaddr hostname clientid vendorid broadcast reqopts local opt dhcpopts diff --git a/package/netifd/files/lib/network/config.sh b/package/netifd/files/lib/network/config.sh index 3b3ae93404..9128971dab 100755 --- a/package/netifd/files/lib/network/config.sh +++ b/package/netifd/files/lib/network/config.sh @@ -5,6 +5,7 @@ find_config() { local device="$1" + local ifdev ifl3dev ifobj for ifobj in `ubus list network.interface.\*`; do interface="${ifobj##network.interface.}" ( @@ -36,7 +37,7 @@ ubus_call() { fixup_interface() { local config="$1" - local ifname type + local ifname type device l3dev config_get type "$config" type config_get ifname "$config" ifname |