summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrivardhan Hebbar <sri.hebbar@samsung.com>2015-03-27 18:39:57 +0100
committerCedric BAIL <cedric@osg.samsung.com>2015-03-27 18:41:05 +0100
commit3a64b0ccd39c7dbdc2f307ee4098920ac7e14a9e (patch)
tree62785b5409e4e0e3ef6c4259f31993af215f9359
parent940f2e72f934ba1987b3326b7b8655b66d41af9d (diff)
downloadefl-3a64b0ccd39c7dbdc2f307ee4098920ac7e14a9e.tar.gz
ecore_con: fix ftp upload function to follow documentation.
Summary: While creating a Ecore_con_url object, the url is given in this format "ftp://ftp.example.com". While uploading a file, this function was prefixing "ftp://" to this url which resulted in DNS failure, and upload fail. So corrected the issue. Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com> Reviewers: cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2221 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/lib/ecore_con/ecore_con_url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c
index 18fd566e56..05b9d05a71 100644
--- a/src/lib/ecore_con/ecore_con_url.c
+++ b/src/lib/ecore_con/ecore_con_url.c
@@ -933,10 +933,10 @@ ecore_con_url_ftp_upload(Ecore_Con_Url *url_obj, const char *filename, const cha
snprintf(tmp, PATH_MAX, "%s", filename);
if (upload_dir)
- snprintf(url, sizeof(url), "ftp://%s/%s/%s", url_con->url,
+ snprintf(url, sizeof(url), "%s/%s/%s", url_con->url,
upload_dir, basename(tmp));
else
- snprintf(url, sizeof(url), "ftp://%s/%s", url_con->url,
+ snprintf(url, sizeof(url), "%s/%s", url_con->url,
basename(tmp));
if (!ecore_con_url_url_set(url_obj, url))