stefan pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5d6960c2ced5cac15dbf1dd5a1778ad91072df45
commit 5d6960c2ced5cac15dbf1dd5a1778ad91072df45 Author: Stefan Schmidt <s.schm...@samsung.com> Date: Fri Nov 15 15:47:54 2013 +0100 e_fm/udisk: Delete the correct storage handle. Copy and paste bug introduced in the initial port to edbus. This could be a cause of problems when using e_fm with removable media and udisk. CID: 1039955 --- src/bin/e_fm/e_fm_main_udisks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_fm/e_fm_main_udisks.c b/src/bin/e_fm/e_fm_main_udisks.c index 96fd871..5d5717f 100644 --- a/src/bin/e_fm/e_fm_main_udisks.c +++ b/src/bin/e_fm/e_fm_main_udisks.c @@ -417,7 +417,7 @@ _e_fm_main_udisks_cb_store_prop(void *data, const Eldbus_Message *msg, if (s->system_internal) { DBG("removing storage internal %s", s->udi); - ecore_idler_add(_storage_del, s->dbus_path); + ecore_idler_add(_storage_del, s->udi); return; } /* force it to be removable if it passed the above tests */ --