summaryrefslogtreecommitdiff
path: root/apt-pkg/srcrecords.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-06-10 15:07:15 +0200
committerMichael Vogt <mvo@debian.org>2014-06-10 15:07:15 +0200
commit401e5db12dd71ed84e8d17a559ff5932c1b98367 (patch)
treebe6738bc9c07e3cbcd1083410c229cbe0f74e4b4 /apt-pkg/srcrecords.cc
parent4656863a42c02700bde2869183a774e4427923cb (diff)
use pkgSrcRecords::Step() instead of Next()
Diffstat (limited to 'apt-pkg/srcrecords.cc')
-rw-r--r--apt-pkg/srcrecords.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/srcrecords.cc b/apt-pkg/srcrecords.cc
index f4d034b85..81b1c545d 100644
--- a/apt-pkg/srcrecords.cc
+++ b/apt-pkg/srcrecords.cc
@@ -81,10 +81,10 @@ bool pkgSrcRecords::Restart()
return true;
}
/*}}}*/
-// SrcRecords::Next - Step to the next Source Record /*{{{*/
+// SrcRecords::Step - Step to the next Source Record /*{{{*/
// ---------------------------------------------------------------------
/* Step to the next source package record */
-const pkgSrcRecords::Parser* pkgSrcRecords::Next()
+const pkgSrcRecords::Parser* pkgSrcRecords::Step()
{
if (Current == Files.end())
return 0;
@@ -111,7 +111,7 @@ pkgSrcRecords::Parser *pkgSrcRecords::Find(const char *Package,bool const &SrcOn
{
while (true)
{
- if(Next() == 0)
+ if(Step() == 0)
return 0;
// IO error somehow