diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:24 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:24 +0000 |
commit | 93274b8d888dea1cf8a855029800b808c6244605 (patch) | |
tree | 63edcf3e017aae29a9fcbf9a3c29557d5f2f3792 /apt-pkg/acquire-method.cc | |
parent | b98f285980c3c2701539e196993ead268141aaeb (diff) |
Minor fixes
Author: jgg
Date: 1998-11-11 07:30:54 GMT
Minor fixes
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 3ad636b81..706222c40 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.6 1998/11/11 06:54:15 jgg Exp $ +// $Id: acquire-method.cc,v 1.7 1998/11/11 07:30:54 jgg Exp $ /* ###################################################################### Acquire Method @@ -334,8 +334,8 @@ void pkgAcqMethod::Status(const char *Format,...) // AcqMethod::FetchResult::FetchResult - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -pkgAcqMethod::FetchResult::FetchResult() : LastModified(0), - IMSHit(false), Size(0) +pkgAcqMethod::FetchResult::FetchResult() : LastModified(0), + IMSHit(false), Size(0), ResumePoint(0) { } /*}}}*/ |