diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:57 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:57 +0000 |
commit | a246f2dc8c6084d857edb2792ce6b37c794e3d69 (patch) | |
tree | 9267d681bcb02b7cd5bd0342f5d86476899f80cb /apt-pkg/pkgcachegen.cc | |
parent | 8ce4327bc0d3f2695b936391c856cc80de6c0d83 (diff) |
Sync
Author: jgg
Date: 1998-09-07 05:28:32 GMT
Sync
Diffstat (limited to 'apt-pkg/pkgcachegen.cc')
-rw-r--r-- | apt-pkg/pkgcachegen.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index c3bf1cf36..825af40c0 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.14 1998/08/26 04:52:23 jgg Exp $ +// $Id: pkgcachegen.cc,v 1.15 1998/09/07 05:28:37 jgg Exp $ /* ###################################################################### Package Cache Generator - Generator for the cache structure. @@ -70,6 +70,7 @@ bool pkgCacheGenerator::MergeList(ListParser &List) { List.Owner = this; + int Counter = 0; while (List.Step() == true) { // Get a pointer to the package structure @@ -77,7 +78,9 @@ bool pkgCacheGenerator::MergeList(ListParser &List) pkgCache::PkgIterator Pkg; if (NewPackage(Pkg,PackageName) == false) return _error->Error("Error occured while processing %s (NewPackage)",PackageName.c_str()); - Progress.Progress(List.Offset()); + Counter++; + if (Counter % 100 == 0) + Progress.Progress(List.Offset()); /* Get a pointer to the version structure. We know the list is sorted so we use that fact in the search. Insertion of new versions is |