diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:59 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:59 +0000 |
commit | 6f86c974be448260a89c1a10d213ec23963711d0 (patch) | |
tree | 9a5268ac66338b3e4529ed5e3742d8e0b473e86a /apt-pkg/pkgcachegen.cc | |
parent | f956efb4abdaea622f4d609613d73ffbb2c97188 (diff) |
Added more insane prompting and fixed a source source l...
Author: jgg
Date: 1999-03-06 02:13:48 GMT
Added more insane prompting and fixed a source source list entry cache bug
Diffstat (limited to 'apt-pkg/pkgcachegen.cc')
-rw-r--r-- | apt-pkg/pkgcachegen.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index bb678154c..ee25a6c05 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgcachegen.cc,v 1.31 1999/03/02 18:35:24 jgg Exp $ +// $Id: pkgcachegen.cc,v 1.32 1999/03/06 02:13:48 jgg Exp $ /* ###################################################################### Package Cache Generator - Generator for the cache structure. @@ -424,7 +424,10 @@ bool pkgSrcCacheCheck(pkgSourceList &List) { // Only cache deb source types. if (I->Type != pkgSourceList::Item::Deb) + { + Missing++; continue; + } string File = ListDir + URItoFileName(I->PackagesURI()); struct stat Buf; |