Skip to content

Commit

Permalink
hostapd: fix typo in ssid variable for non-supplicant mesh interface …
Browse files Browse the repository at this point in the history
…bringup

Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
nbd168 committed Aug 9, 2023
1 parent 4bd9f2e commit d198c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/network/services/hostapd/files/wdev.uc
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit d198c77

Please sign in to comment.