Fix debug messages that print duplicate function names

git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1546 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2006-03-04 05:01:57 +00:00
parent 94dfb30e75
commit e4cb569ff3

View file

@ -1872,7 +1872,7 @@ nm_device_802_11_wireless_scan (gpointer user_data)
scan_results->results_len = results_len;
}
else
nm_warning ("get_scan_results() on device %s returned an error.", iface);
nm_warning ("device %s returned an error.", iface);
}
nm_device_802_11_wireless_set_mode (self, orig_mode);
@ -3046,7 +3046,7 @@ get_scan_results (NMDevice80211Wireless *dev,
{
if (tries > 20 * SCAN_SLEEP_CENTISECONDS)
{
nm_warning ("get_scan_results(): card took too much time scanning. Get a better one.");
nm_warning ("card took too much time scanning. Get a better one.");
break;
}
@ -3060,7 +3060,7 @@ get_scan_results (NMDevice80211Wireless *dev,
}
else /* Random errors */
{
nm_warning ("get_scan_results(): unknown error, or the card returned too much scan info: %s",
nm_warning ("unknown error, or the card returned too much scan info: %s",
strerror (errno));
break;
}