SVN revision: 56610
This commit is contained in:
Davide Andreoli 2011-01-31 17:29:24 +00:00
parent 517756c0cc
commit b84bd07b90
1 changed files with 3 additions and 3 deletions

View File

@ -125,15 +125,15 @@ ecore_file_download(const char *url,
if (!ecore_file_is_dir(dir))
{
EINA_LOG_ERR("%s is not a directory", dir);
EINA_LOG_ERR("%s is not a directory", dir);
free(dir);
return EINA_FALSE;
}
free(dir);
if (ecore_file_exists(dst))
{
EINA_LOG_ERR("%s already exists", dst);
return EINA_FALSE;
EINA_LOG_ERR("%s already exists", dst);
return EINA_FALSE;
}
if (!strncmp(url, "file://", 7))