Don't die on failure to set blank SSID

git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2997 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2007-10-22 16:51:06 +00:00
parent 7ba9c6e1c5
commit c94068eb71

View file

@ -1286,7 +1286,7 @@ nm_device_802_11_wireless_set_ssid (NMDevice80211Wireless *self,
if (iw_get_ext (sk, iface, SIOCSIWESSID, &wrq) < 0) {
if (errno != ENODEV) {
nm_warning ("error setting SSID to '%s' for device %s: %s",
nm_utils_escape_ssid (ssid->data, ssid->len),
ssid ? nm_utils_escape_ssid (ssid->data, ssid->len) : "(null)",
iface, strerror (errno));
}
}