diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-12-06 19:34:08 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-12-06 19:34:08 +0100 |
commit | 4c10eb1a2c54eda92469ffe984e8a56f70f5cf3d (patch) | |
tree | 74da277692ed78a0edf763ca0c83d4b1ef6558c3 /methods | |
parent | 773721d74cee9bc7136afc097e479387be7dea7d (diff) | |
parent | 8076139ead08124e86be5f993baa8a43c22b0137 (diff) |
* methods/gpgv.cc:
- remove cruft code that caused timestamp/I-M-S issues
* ftparchive/contents.cc:
- fix error output
* methods/mirror.{cc,h}:
- only update mirror list on IndexFile updates
* ftparchive/contents.cc:
- support lzma data members
* ftparchive/multicompress.cc:
- support lzma output
Diffstat (limited to 'methods')
-rw-r--r-- | methods/gpgv.cc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/methods/gpgv.cc b/methods/gpgv.cc index 2b1fa5169..01b240856 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -266,23 +266,6 @@ bool GPGVMethod::Fetch(FetchItem *Itm) return _error->Error(errmsg.c_str()); } - // Transfer the modification times - struct stat Buf; - if (stat(Path.c_str(),&Buf) != 0) - return _error->Errno("stat",_("Failed to stat %s"), Path.c_str()); - - struct utimbuf TimeBuf; - TimeBuf.actime = Buf.st_atime; - TimeBuf.modtime = Buf.st_mtime; - if (utime(Itm->DestFile.c_str(),&TimeBuf) != 0) - return _error->Errno("utime",_("Failed to set modification time")); - - if (stat(Itm->DestFile.c_str(),&Buf) != 0) - return _error->Errno("stat",_("Failed to stat")); - - // Return a Done response - Res.LastModified = Buf.st_mtime; - Res.Size = Buf.st_size; // Just pass the raw output up, because passing it as a real data // structure is too difficult with the method stuff. We keep it // as three separate vectors for future extensibility. |