]> git.saurik.com Git - apt.git/blobdiff - ftparchive/cachedb.cc
Add missing "adduser" dependency (for the new _apt user)
[apt.git] / ftparchive / cachedb.cc
index 7770a32449ff41f32614db8869565c27d2362fcd..da45eb8d25229b5364fe5be7fee9bedc498b37ba 100644 (file)
 #include <apti18n.h>
                                                                        /*}}}*/
 
-CacheDB::CacheDB(std::string const &DB) 
+CacheDB::CacheDB(std::string const &DB)
    : Dbp(0), Fd(NULL), DebFile(0)
 {
    TmpKey[0]='\0';
    ReadyDB(DB);
-};
+}
 
 CacheDB::~CacheDB()
 {
    ReadyDB();
    delete DebFile;
-};
+}
 
 // CacheDB::ReadyDB - Ready the DB2                                    /*{{{*/
 // ---------------------------------------------------------------------