diff options
| author | Sean Khan | 2025-02-20 01:01:29 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-05-27 09:27:24 +0000 |
| commit | f26bdea981550e5e2db7a0a7a53a9b7e8881a3f8 (patch) | |
| tree | 2bcbd950bb99afd665495a47f75ecf4370130dfe | |
| parent | 0088a5a17936a923eb64a68938deb4f9b1ca1aec (diff) | |
| download | openwrt-f26bdea981550e5e2db7a0a7a53a9b7e8881a3f8.tar.gz | |
wifi-scripts: ucode: iwinfo: fix 'unknown' typo
The 'unknown' string was misspelled as 'unknonw'.
Signed-off-by: Sean Khan <datapronix@protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/18039
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc b/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc index ff878cfebb..a85614cdcb 100644 --- a/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc +++ b/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc @@ -96,7 +96,7 @@ export let ifaces = {}; for (let k, v in interfaces) { let iface = ifaces[v.ifname] = v; - iface.mode = iftypes[iface.iftype] ?? 'unknonw', + iface.mode = iftypes[iface.iftype] ?? 'unknown', iface.noise = get_noise(iface); iface.country = get_country(iface); iface.max_power = get_max_power(iface); |