From 0f72a342f3ce65ec8ed4313980629ee0fa5aecb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Wed, 26 May 2021 11:33:44 +0200 Subject: [PATCH] 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. --- repos/dde_linux/src/drivers/wifi/frontend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/dde_linux/src/drivers/wifi/frontend.h b/repos/dde_linux/src/drivers/wifi/frontend.h index 8804ec8835..a5630fd4bc 100644 --- a/repos/dde_linux/src/drivers/wifi/frontend.h +++ b/repos/dde_linux/src/drivers/wifi/frontend.h @@ -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()