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-method.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-method.cc')
-rw-r--r-- | apt-pkg/acquire-method.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/acquire-method.cc b/apt-pkg/acquire-method.cc index 8b1de6fb3..e25b26b6a 100644 --- a/apt-pkg/acquire-method.cc +++ b/apt-pkg/acquire-method.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-method.cc,v 1.14 1998/12/05 04:19:01 jgg Exp $ +// $Id: acquire-method.cc,v 1.15 1999/01/24 21:16:04 jgg Exp $ /* ###################################################################### Acquire Method @@ -148,7 +148,7 @@ void pkgAcqMethod::URIDone(FetchResult &Res, FetchResult *Alt) TimeRFC1123(Res.LastModified).c_str()); if (Res.MD5Sum.empty() == false) - End += snprintf(End,sizeof(S) - (End - S),"MD5Sum: %s\n",Res.MD5Sum.c_str()); + End += snprintf(End,sizeof(S) - (End - S),"MD5-Hash: %s\n",Res.MD5Sum.c_str()); if (Res.ResumePoint != 0) End += snprintf(End,sizeof(S) - (End - S),"Resume-Point: %u\n", @@ -171,7 +171,7 @@ void pkgAcqMethod::URIDone(FetchResult &Res, FetchResult *Alt) TimeRFC1123(Alt->LastModified).c_str()); if (Alt->MD5Sum.empty() == false) - End += snprintf(End,sizeof(S) - (End - S),"Alt-MD5Sum: %s\n", + End += snprintf(End,sizeof(S) - (End - S),"Alt-MD5-Hash: %s\n", Alt->MD5Sum.c_str()); if (Alt->IMSHit == true) |