diff options
author | Andre Heider <a.heider@gmail.com> | 2022-11-02 08:49:35 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-04-12 19:49:22 +0200 |
commit | 8fbe7738b9ef4131c8ca069c0f3abde134139da2 (patch) | |
tree | e8eae542def45bbce611e3e8f922e974aacb9893 /package/base-files/files/sbin/wifi | |
parent | 930e702d72b0fc593441c92519cc6515e4f784cc (diff) | |
download | upstream-8fbe7738b9ef4131c8ca069c0f3abde134139da2.tar.gz upstream-8fbe7738b9ef4131c8ca069c0f3abde134139da2.tar.bz2 upstream-8fbe7738b9ef4131c8ca069c0f3abde134139da2.zip |
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>
Diffstat (limited to 'package/base-files/files/sbin/wifi')
-rwxr-xr-x | package/base-files/files/sbin/wifi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/files/sbin/wifi b/package/base-files/files/sbin/wifi index 6a9dce7e8a..29585389df 100755 --- a/package/base-files/files/sbin/wifi +++ b/package/base-files/files/sbin/wifi @@ -17,8 +17,8 @@ ubus_wifi_cmd() { local dev="$2" json_init - [ -n "$2" ] && json_add_string device "$2" - ubus call network.wireless "$1" "$(json_dump)" + [ -n "$dev" ] && json_add_string device "$dev" + ubus call network.wireless "$cmd" "$(json_dump)" } find_net_config() {( |