Remove this check. Any software that depended on this check should check before calling this function instead.

SVN revision: 35781
This commit is contained in:
Nicholas Hughart 2008-09-01 20:13:00 +00:00
parent 7f3c271680
commit f8cee23def
1 changed files with 0 additions and 1 deletions

View File

@ -295,7 +295,6 @@ ecore_file_cp(const char *src, const char *dst)
EAPI int
ecore_file_mv(const char *src, const char *dst)
{
if (ecore_file_exists(dst)) return 0;
if (rename(src, dst))
{
if (errno == EXDEV)