diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:49 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:49 +0000 |
commit | ab559b358d7c390ac63bfcf8d526ca44761aafc5 (patch) | |
tree | f3e5de5cc903ac81f2df7b8992be8e780b707440 /apt-pkg/acquire-item.cc | |
parent | f436bdc5fdd0db812484774d701e7d98b1e76224 (diff) |
Added --no-download
Author: jgg
Date: 1999-05-24 03:39:36 GMT
Added --no-download
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r-- | apt-pkg/acquire-item.cc | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index f2fd0b8b8..1b683a373 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-item.cc,v 1.29 1999/04/28 22:48:44 jgg Exp $ +// $Id: acquire-item.cc,v 1.30 1999/05/24 03:39:36 jgg Exp $ /* ###################################################################### Acquire Item - Item to acquire @@ -541,6 +541,17 @@ void pkgAcqArchive::Failed(string Message,pkgAcquire::MethodConfig *Cnf) } } /*}}}*/ +// AcqArchive::Finished - Fetching has finished, tidy up /*{{{*/ +// --------------------------------------------------------------------- +/* */ +void pkgAcqArchive::Finished() +{ + if (Status == pkgAcquire::Item::StatDone && + Complete == true) + return; + StoreFilename = string(); +} + /*}}}*/ // AcqFile::pkgAcqFile - Constructor /*{{{*/ // --------------------------------------------------------------------- |