summaryrefslogtreecommitdiff
path: root/ftparchive/apt-ftparchive.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:04:32 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:04:32 +0000
commitf7291f6215c1e52298d47438c297c3c319abca7e (patch)
treed65d7ac6acee7531ed7bdb7286fc3d46f1f881c3 /ftparchive/apt-ftparchive.cc
parentbbb55c6af6f691f2f4064ca472a40f8486ac8ca3 (diff)
Add SHA1 support to "apt-ftparchive release"
Author: mdz Date: 2003-12-26 20:50:01 GMT Add SHA1 support to "apt-ftparchive release"
Diffstat (limited to 'ftparchive/apt-ftparchive.cc')
-rw-r--r--ftparchive/apt-ftparchive.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc
index c811343b6..02e98bae6 100644
--- a/ftparchive/apt-ftparchive.cc
+++ b/ftparchive/apt-ftparchive.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-ftparchive.cc,v 1.9 2003/12/26 20:08:56 mdz Exp $
+// $Id: apt-ftparchive.cc,v 1.10 2003/12/26 20:50:01 mdz Exp $
/* ######################################################################
apt-scanpackages - Efficient work-alike for dpkg-scanpackages
@@ -684,6 +684,8 @@ bool SimpleGenRelease(CommandLine &CmdL)
if (Release.RecursiveScan(CmdL.FileList[1]) == false)
return false;
+ Release.Finish();
+
return true;
}