diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-26 23:29:20 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-26 23:29:20 +0200 |
commit | af5a94f4c7b1f2cc797cd1e023e36a1bb359689d (patch) | |
tree | b95e2e27ec3f5b020b055da187bb2012b1921aa3 /methods/ftp.cc | |
parent | 60681f9354217c830943315951e6559253bfa832 (diff) | |
parent | 4577fda2b5f2b21f5400d10f4db71a8095f0df58 (diff) |
* merged with mainline
Diffstat (limited to 'methods/ftp.cc')
-rw-r--r-- | methods/ftp.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/methods/ftp.cc b/methods/ftp.cc index f595e0ca4..0c2aa00a7 100644 --- a/methods/ftp.cc +++ b/methods/ftp.cc @@ -1055,9 +1055,12 @@ bool FtpMethod::Fetch(FetchItem *Itm) UBuf.modtime = FailTime; utime(FailFile.c_str(),&UBuf); - // If the file is missing we hard fail otherwise transient fail - if (Missing == true) + // If the file is missing we hard fail and delete the destfile + // otherwise transient fail + if (Missing == true) { + unlink(FailFile.c_str()); return false; + } Fail(true); return true; } |