From: Felix Fietkau Date: Wed, 9 Aug 2023 08:51:46 +0000 (+0200) Subject: hostapd: fix typo in ssid variable for non-supplicant mesh interface bringup X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d198c77764b048096a6a4e339de342423dcc8cc9;p=openwrt%2Fstaging%2Fthess.git hostapd: fix typo in ssid variable for non-supplicant mesh interface bringup Signed-off-by: Felix Fietkau --- diff --git a/package/network/services/hostapd/files/wdev.uc b/package/network/services/hostapd/files/wdev.uc index 896f5261fb..5b321423eb 100644 --- a/package/network/services/hostapd/files/wdev.uc +++ b/package/network/services/hostapd/files/wdev.uc @@ -46,7 +46,7 @@ function iface_start(wdev) push(cmd, key, wdev[key]); system(cmd); } else if (wdev.mode == "mesh") { - let cmd = [ "iw", "dev", ifname, "mesh", "join", ssid, "freq", wdev.freq, wdev.htmode ]; + let cmd = [ "iw", "dev", ifname, "mesh", "join", wdev.ssid, "freq", wdev.freq, wdev.htmode ]; for (let key in [ "beacon-interval", "mcast-rate" ]) if (wdev[key]) push(cmd, key, wdev[key]);