diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:28 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:28 +0000 |
commit | fd9bd3dc10222775842c5f7357f58431142c2cd1 (patch) | |
tree | 364a63b85b2246cc4a6b2bffef4f8bbc3f760241 /apt-pkg/acquire-item.cc | |
parent | 386af8c00b0f2778e657a46728923c7fb3480d73 (diff) |
Fixed md5 handling
Author: jgg
Date: 1999-01-24 21:16:04 GMT
Fixed md5 handling
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r-- | apt-pkg/acquire-item.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 59301784e..aef96687e 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-item.cc,v 1.17 1998/12/11 06:32:33 jgg Exp $ +// $Id: acquire-item.cc,v 1.18 1999/01/24 21:16:04 jgg Exp $ /* ###################################################################### Acquire Item - Item to acquire @@ -419,7 +419,7 @@ bool pkgAcqArchive::QueueNext() /* */ void pkgAcqArchive::Done(string Message,unsigned long Size,string Md5Hash) { - Item::Done(Message,Size,MD5); + Item::Done(Message,Size,Md5Hash); // Check the size if (Size != Version->Size) |