diff options
author | Michael Vogt <egon@tas> | 2006-12-07 12:06:54 +0100 |
---|---|---|
committer | Michael Vogt <egon@tas> | 2006-12-07 12:06:54 +0100 |
commit | 3ca658384917297fdb75112a2b2df26054678934 (patch) | |
tree | deadcb5d3688dc15ecc95b0c54941191b90ea513 /methods | |
parent | c7d9068f8c352b1ba6b43bd1fffb88542bee19a9 (diff) | |
parent | 1c05ebd6da9491d316997a98db1451f7b0526603 (diff) |
merged from apt--mvo
Diffstat (limited to 'methods')
-rw-r--r-- | methods/gzip.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/methods/gzip.cc b/methods/gzip.cc index 55ff33270..f732c0b86 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -52,6 +52,13 @@ bool GzipMethod::Fetch(FetchItem *Itm) // Open the source and destination files FileFd From(Path,FileFd::ReadOnly); + // if the file is empty, just rename it and return + if(From.Size() == 0) + { + rename(Path.c_str(), Itm->DestFile.c_str()); + return true; + } + int GzOut[2]; if (pipe(GzOut) < 0) return _error->Errno("pipe",_("Couldn't open pipe for %s"),Prog); |