diff --git a/ChangeLog b/ChangeLog index 3033c93a2c..f461f0a85d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-05 Dan Williams + + * src/supplicant-manager/nm-supplicant-config.c + - (nm_supplicant_config_add_setting_wireless): send scan_ssid=1 for + broadcast networks too + 2008-02-04 Dan Williams * system-settings/plugins/ifcfg-fedora/parser.c diff --git a/src/supplicant-manager/nm-supplicant-config.c b/src/supplicant-manager/nm-supplicant-config.c index 4688a57d82..871699ae9a 100644 --- a/src/supplicant-manager/nm-supplicant-config.c +++ b/src/supplicant-manager/nm-supplicant-config.c @@ -375,10 +375,10 @@ nm_supplicant_config_add_setting_wireless (NMSupplicantConfig * self, } } - /* For non-broadcast networks, we need to set "scan_ssid 1" to scan with - * probe request frames. However, don't try to probe Ad-Hoc networks. + /* Except for Ad-Hoc networks, request that the driver probe for the + * specific SSID we want to associate with. */ - if (!is_broadcast && !is_adhoc) { + if (!is_adhoc) { if (!nm_supplicant_config_add_option (self, "scan_ssid", "1", -1, FALSE)) return FALSE; }