Revert "wifi: do no crash when getting BSSID fails"

Since commit ebe3320e62,
nm_ap_new_from_properties() will always return an
AP with BSSID set. Restore the assertion during
try_fill_ssid_for_hidden_ap().

This reverts commit e0e043ef39.

(cherry picked from commit d5373959f9)
This commit is contained in:
Thomas Haller 2015-11-11 18:00:33 +01:00
parent ebe3320e62
commit 0ff3699af5

View file

@ -1649,11 +1649,7 @@ try_fill_ssid_for_hidden_ap (NMAccessPoint *ap)
g_return_if_fail (nm_ap_get_ssid (ap) == NULL);
bssid = nm_ap_get_address (ap);
if (!bssid) {
nm_log_dbg (LOGD_WIFI, "failed to get BSSID for hidden AP %s",
str_if_set (nm_ap_get_supplicant_path (ap), "(none)"));
return;
}
g_return_if_fail (bssid);
/* Look for this AP's BSSID in the seen-bssids list of a connection,
* and if a match is found, copy over the SSID */