Adjusted to use the new Transfer() instead of the old Download()

This commit is contained in:
Daniel Stenberg
2000-02-01 23:52:11 +00:00
parent d2af77e60c
commit 15755b3fd8
3 changed files with 26 additions and 23 deletions

View File

@@ -754,7 +754,8 @@ UrgError _ftp(struct UrlData *data,
size prior to the actual upload. */
ProgressInit(data, data->infilesize);
result = Upload(data, data->secondarysocket, bytecountp);
result = Transfer(data, -1, -1, FALSE, NULL, /* no download */
data->secondarysocket, bytecountp);
if(result)
return result;
@@ -977,8 +978,9 @@ UrgError _ftp(struct UrlData *data,
infof(data, "Getting file with size: %d\n", size);
/* FTP download: */
result=Download(data, data->secondarysocket, size, FALSE,
bytecountp);
result=Transfer(data, data->secondarysocket, size, FALSE,
bytecountp,
-1, NULL); /* no upload here */
if(result)
return result;