summaryrefslogtreecommitdiff
path: root/apt-pkg/pkgcachegen.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:52:59 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:52:59 +0000
commit6f86c974be448260a89c1a10d213ec23963711d0 (patch)
tree9a5268ac66338b3e4529ed5e3742d8e0b473e86a /apt-pkg/pkgcachegen.cc
parentf956efb4abdaea622f4d609613d73ffbb2c97188 (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.cc5
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;