fix some warnings with --disable-curl

SVN revision: 53935
This commit is contained in:
Mike Blumenkrantz 2010-10-27 20:34:36 +00:00
parent e27a2a14a0
commit d5c4e58535
1 changed files with 9 additions and 0 deletions

View File

@ -153,6 +153,15 @@ ecore_file_download(const char *url,
if(job_ret) *job_ret = job;
return job ? EINA_TRUE : EINA_FALSE;
}
# else
else if ((!strncmp(url, "http://", 7)) ||
(!strncmp(url, "ftp://", 6)))
{
(void)completion_cb;
(void)progress_cb;
(void)data;
(void)job_ret;
}
# endif
else
{