mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-02 20:16:59 +00:00
base-files: use named variables in the wifi script
Use the already present but unused $cmd and $dev variables instead of positional parameters in ubus_wifi_cmd() to improve readability. Signed-off-by: Andre Heider <a.heider@gmail.com>
This commit is contained in:
parent
930e702d72
commit
8fbe7738b9
@ -17,8 +17,8 @@ ubus_wifi_cmd() {
|
|||||||
local dev="$2"
|
local dev="$2"
|
||||||
|
|
||||||
json_init
|
json_init
|
||||||
[ -n "$2" ] && json_add_string device "$2"
|
[ -n "$dev" ] && json_add_string device "$dev"
|
||||||
ubus call network.wireless "$1" "$(json_dump)"
|
ubus call network.wireless "$cmd" "$(json_dump)"
|
||||||
}
|
}
|
||||||
|
|
||||||
find_net_config() {(
|
find_net_config() {(
|
||||||
|
Loading…
Reference in New Issue
Block a user