]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
wifi-scripts: ucode: iwinfo: fix 'unknown' typo
authorSean Khan <datapronix@protonmail.com>
Thu, 20 Feb 2025 01:01:29 +0000 (20:01 -0500)
committerRobert Marko <robimarko@gmail.com>
Tue, 27 May 2025 09:27:24 +0000 (11:27 +0200)
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>
package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc

index ff878cfebb7372d8f93489a2caddd4c2bed4fec8..a85614cdcb42b4dceac528e80778176cebf42f4e 100644 (file)
@@ -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);