]> git.saurik.com Git - apt.git/commitdiff
revert my last patch.... see bts :)
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:59:27 +0000 (16:59 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:59:27 +0000 (16:59 +0000)
Author: tausq
Date: 2002-09-20 05:30:33 GMT
revert my last patch.... see bts :)

apt-inst/contrib/arfile.cc
debian/changelog

index 9237b28d958f45cb0d6412e12a25349e4b9eec37..6d937df6d5f5dbb056511a07d1aa0e367b2ae6b4 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: arfile.cc,v 1.3 2002/09/20 04:42:25 tausq Exp $
+// $Id: arfile.cc,v 1.4 2002/09/20 05:30:33 tausq Exp $
 /* ######################################################################
 
    AR File - Handle an 'AR' archive
@@ -113,7 +113,7 @@ bool ARArchive::LoadHeaders()
       else
       {
         unsigned int I = sizeof(Head.Name) - 1;
-        for (; Head.Name[I] == ' ' || Head.Name[I] == '/'; I--);
+        for (; Head.Name[I] == ' '; I--);
         Memb->Name = string(Head.Name,0,I+1);
       }
 
index 37efb7eb97b630508f08911aab68af0e4f580057..b5875777d332d977e4948bfb8bb4cbf4f771af54 100644 (file)
@@ -43,8 +43,6 @@ apt (0.5.5) unstable; urgency=low
   * 'apt-get update' no longer does 'Building Dependency Tree'.
   * When matching regexs allways print a message. Change regex activation
     charset. Closes: #147817
-  * Handle ar files with / name delimiters (as per AR standard). 
-    Closes: #161593
   
  --