e/connman: do not print an error if name has no owner

SVN revision: 76036
This commit is contained in:
Lucas De Marchi 2012-09-03 21:58:42 +00:00
parent abea9f9a65
commit 24a547a8f5
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ _e_connman_get_name_owner(void *data __UNUSED__, DBusMessage *msg, DBusError *er
if (dbus_error_is_set(err))
{
if (!strcmp(err->name, DBUS_ERROR_NAME_HAS_NO_OWNER))
if (strcmp(err->name, DBUS_ERROR_NAME_HAS_NO_OWNER) != 0)
ERR("could not get bus name owner: %s %s", err->name, err->message);
return;
}