diff options
author | Nicholas Hughart <mekius@mekius.net> | 2008-09-01 20:13:00 +0000 |
---|---|---|
committer | Nicholas Hughart <mekius@mekius.net> | 2008-09-01 20:13:00 +0000 |
commit | f8cee23def6aa65d0c7299021091a19cbc58f9e6 (patch) | |
tree | 1cd6ab9c96c453060f8d0e73ce2174c68667f33d | |
parent | 7f3c271680d3e750327a562043a23db479735ce3 (diff) |
Remove this check. Any software that depended on this check should check before calling this function instead.
SVN revision: 35781
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore_file/ecore_file.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/legacy/ecore/src/lib/ecore_file/ecore_file.c b/legacy/ecore/src/lib/ecore_file/ecore_file.c index 10b9d581d4..1e828385a0 100644 --- a/legacy/ecore/src/lib/ecore_file/ecore_file.c +++ b/legacy/ecore/src/lib/ecore_file/ecore_file.c | |||
@@ -295,7 +295,6 @@ ecore_file_cp(const char *src, const char *dst) | |||
295 | EAPI int | 295 | EAPI int |
296 | ecore_file_mv(const char *src, const char *dst) | 296 | ecore_file_mv(const char *src, const char *dst) |
297 | { | 297 | { |
298 | if (ecore_file_exists(dst)) return 0; | ||
299 | if (rename(src, dst)) | 298 | if (rename(src, dst)) |
300 | { | 299 | { |
301 | if (errno == EXDEV) | 300 | if (errno == EXDEV) |