summaryrefslogtreecommitdiff
path: root/ftparchive/cachedb.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:58:14 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:58:14 +0000
commit812f4169fee839b6cc6532a76276e0a957aeba77 (patch)
treee2b2ef77664716660b08560d8655b46c4b477cf3 /ftparchive/cachedb.cc
parent0a5e4a031a039329cc0d27268be6a623e892c452 (diff)
G++3 fixes from Randolph
Author: jgg Date: 2001-05-29 03:48:27 GMT G++3 fixes from Randolph
Diffstat (limited to 'ftparchive/cachedb.cc')
-rw-r--r--ftparchive/cachedb.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftparchive/cachedb.cc b/ftparchive/cachedb.cc
index dd63f215a..cbcdfedc6 100644
--- a/ftparchive/cachedb.cc
+++ b/ftparchive/cachedb.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: cachedb.cc,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: cachedb.cc,v 1.3 2001/05/29 03:50:33 jgg Exp $
/* ######################################################################
CacheDB
@@ -213,7 +213,7 @@ bool CacheDB::GetMD5(string &MD5Res,bool GenOnly)
MD5Res = MD5.Result();
InitQuery("m5");
- if (Put(MD5Res.begin(),MD5Res.length()) == true)
+ if (Put(MD5Res.c_str(),MD5Res.length()) == true)
CurStat.Flags |= FlMD5;
return true;
}