mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
wifi_drv: fix setting 'bssid' in config
The wpa_supplicant refuses to set the BSSID in case it is quoted. Removing the quotes allows for specifying the BSSID in the configuration. Fixes #4175.
This commit is contained in:
parent
3dff399fba
commit
0f72a342f3
@ -955,7 +955,7 @@ struct Wifi::Frontend
|
||||
char const *bssid = valid ? _processed_ap->bssid.string() : "";
|
||||
|
||||
_submit_cmd(Cmd_str("SET_NETWORK ", _processed_ap->id,
|
||||
" bssid \"", bssid, "\""));
|
||||
" bssid ", bssid));
|
||||
}
|
||||
|
||||
void _network_set_psk()
|
||||
|
Loading…
Reference in New Issue
Block a user