Sfoglia il codice sorgente

Wichert and Espys bugs
Author: jgg
Date: 1999-03-17 03:25:25 GMT
Wichert and Espys bugs

Arch Librarian 22 anni fa
parent
commit
4a6d5862ef
2 ha cambiato i file con 3 aggiunte e 6 eliminazioni
  1. 2 2
      apt-pkg/contrib/fileutl.cc
  2. 1 4
      cmdline/apt-cache.cc

+ 2 - 2
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;

+ 1 - 4
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;