summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:09 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:09 +0000
commit4a6d5862ef735b34896c44744acbf1b6b6d3ee15 (patch)
treef50992bc1e05532dc603a0f3b597785d02cb3448
parent2ee6f3cb4379aef177f33d8ad63994ef1fde5117 (diff)
Wichert and Espys bugs
Author: jgg Date: 1999-03-17 03:25:25 GMT Wichert and Espys bugs
-rw-r--r--apt-pkg/contrib/fileutl.cc4
-rw-r--r--cmdline/apt-cache.cc5
2 files changed, 3 insertions, 6 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc
index a28dce6c0..0839cc963 100644
--- a/apt-pkg/contrib/fileutl.cc
+++ b/apt-pkg/contrib/fileutl.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: fileutl.cc,v 1.23 1999/03/16 00:43:55 jgg Exp $
+// $Id: fileutl.cc,v 1.24 1999/03/17 03:25:25 jgg Exp $
/* ######################################################################
File Utilities
@@ -45,7 +45,7 @@ bool CopyFile(FileFd &From,FileFd &To)
if (Size > 64000)
ToRead = 64000;
- if (To.Read(Buf,ToRead) == false ||
+ if (From.Read(Buf,ToRead) == false ||
To.Write(Buf,ToRead) == false)
{
delete [] Buf;
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc
index 8a3a63695..8f47739a5 100644
--- a/cmdline/apt-cache.cc
+++ b/cmdline/apt-cache.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.28 1999/02/19 08:57:41 jgg Exp $
+// $Id: apt-cache.cc,v 1.29 1999/03/17 03:25:25 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
@@ -361,9 +361,6 @@ bool DumpAvail(CommandLine &Cmd)
for (pkgCache::PkgFileIterator I = Cache.FileBegin(); I.end() == false; I++)
{
- if ((I->Flags & pkgCache::Flag::NotSource) != 0)
- continue;
-
if (I.IsOk() == false)
{
delete [] Buffer;