diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:23 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:23 +0000 |
commit | ddc1d8d08eaff6c71c6062654ddd9d8981799ae9 (patch) | |
tree | 745d470d679bf169cab6da3f3322f40121e1f81c /apt-pkg/deb/dpkginit.h | |
parent | 727f18afe9c2eec15ee446cb667d9561644b5bf6 (diff) |
Minor cleanups, fix for checksum lowercase bug
Author: jgg
Date: 1999-07-26 17:46:07 GMT
Minor cleanups, fix for checksum lowercase bug
Diffstat (limited to 'apt-pkg/deb/dpkginit.h')
-rw-r--r-- | apt-pkg/deb/dpkginit.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/apt-pkg/deb/dpkginit.h b/apt-pkg/deb/dpkginit.h index 288f50d04..532ff6236 100644 --- a/apt-pkg/deb/dpkginit.h +++ b/apt-pkg/deb/dpkginit.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: dpkginit.h,v 1.1 1998/11/23 07:03:11 jgg Exp $ +// $Id: dpkginit.h,v 1.2 1999/07/26 17:46:08 jgg Exp $ /* ###################################################################### DPKG init - Initialize the dpkg stuff @@ -23,10 +23,11 @@ class pkgDpkgLock public: - bool GetLock(); + bool CheckUpdates(); + bool GetLock(bool WithUpdates); void Close(); - - pkgDpkgLock(); + + pkgDpkgLock(bool WithUpdates = true); ~pkgDpkgLock(); }; |