fix some values that should be stringshare compared because they're stringshares but this is something I should probably go back and fix later when I'm not drunk and eating taffy

SVN revision: 53130
This commit is contained in:
Mike Blumenkrantz 2010-10-07 02:53:32 +00:00
parent 5f713c865b
commit c54623f21f
2 changed files with 2 additions and 2 deletions

View File

@ -998,7 +998,7 @@ _e_fm_main_dbus_storage_find(const char *udi)
EINA_LIST_FOREACH(_e_stores, l, s)
{
if (udi == s->udi) return s;
if (!strcmp(udi, s->udi)) return s;
}
return NULL;
}

View File

@ -84,7 +84,7 @@ e_fm2_dbus_storage_find(const char *udi)
if (!udi) return NULL;
EINA_LIST_FOREACH(_e_stores, l, s)
if (udi == s->udi) return s;
if (!strcmpudi, s->udi)) return s;
return NULL;
}