just use ecore_exe_run instead of pipe_run

SVN revision: 59425
This commit is contained in:
Mike Blumenkrantz 2011-05-15 23:50:06 +00:00
parent 970e932e85
commit 6ff3f70d1b
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ eeze_disk_mount(Eeze_Disk *disk)
}
INF("Mounting: %s", eina_strbuf_string_get(disk->mount_cmd));
disk->mounter = ecore_exe_pipe_run(eina_strbuf_string_get(disk->mount_cmd), 0, disk);
disk->mounter = ecore_exe_run(eina_strbuf_string_get(disk->mount_cmd), disk);
if (!disk->mounter)
return EINA_FALSE;
eeze_events = eina_list_append(eeze_events, disk);