diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:27 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:27 +0000 |
commit | 00ec615a4b01f54dfd2588d48229c8eb3a67ba07 (patch) | |
tree | e5183eb9719f033fc2b869c63da8e0b851d644a1 | |
parent | e9b0cab795afa27f50ee30708e090962a806c6fa (diff) |
revert my last patch.... see bts :)
Author: tausq
Date: 2002-09-20 05:30:33 GMT
revert my last patch.... see bts :)
-rw-r--r-- | apt-inst/contrib/arfile.cc | 4 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/apt-inst/contrib/arfile.cc b/apt-inst/contrib/arfile.cc index 9237b28d9..6d937df6d 100644 --- a/apt-inst/contrib/arfile.cc +++ b/apt-inst/contrib/arfile.cc @@ -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); } diff --git a/debian/changelog b/debian/changelog index 37efb7eb9..b5875777d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 -- |