diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:23 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:23 +0000 |
commit | b98f285980c3c2701539e196993ead268141aaeb (patch) | |
tree | 3e3859db916e6f9b3d56b341b91a2836ff5b4d51 /apt-pkg/acquire-method.cc | |
parent | 769f7e1ae907a499199c1f7a34124c1770f37176 (diff) |
Almost done now
Author: jgg
Date: 1998-11-11 06:54:13 GMT
Almost done now
Diffstat (limited to 'apt-pkg/acquire-method.cc')
-rw-r--r-- | apt-pkg/acquire-method.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/apt-pkg/acquire-method.cc b/apt-pkg/acquire-method.cc index f1a247788..3ad636b81 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.5 1998/11/09 01:09:22 jgg Exp $ +// $Id: acquire-method.cc,v 1.6 1998/11/11 06:54:15 jgg Exp $ /* ###################################################################### Acquire Method @@ -141,6 +141,10 @@ void pkgAcqMethod::URIDone(FetchResult &Res, FetchResult *Alt) if (Res.MD5Sum.empty() == false) End += snprintf(End,sizeof(S) - (End - S),"MD5Sum: %s\n",Res.MD5Sum.c_str()); + if (Res.ResumePoint != 0) + End += snprintf(End,sizeof(S) - (End - S),"Resume-Point: %u\n", + Res.ResumePoint); + if (Res.IMSHit == true) strcat(End,"IMS-Hit: true\n"); End = S + strlen(S); @@ -256,7 +260,9 @@ int pkgAcqMethod::Run(bool Single) Tmp->Uri = LookupTag(Message,"URI"); Tmp->DestFile = LookupTag(Message,"FileName"); - StrToTime(LookupTag(Message,"Last-Modified"),Tmp->LastModified); + if (StrToTime(LookupTag(Message,"Last-Modified"),Tmp->LastModified) == false) + Tmp->LastModified = 0; + Tmp->Next = 0; // Append it to the list |