diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:43 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:43 +0000 |
commit | 9c14e3d619e713aefa623986b5bbae81a1d6cc94 (patch) | |
tree | 282c77581b35bbdc46faa400be5d64ec37605507 /apt-pkg/tagfile.cc | |
parent | 6c139d6e362f04a1582e8a8f511f8aeab031fecf (diff) |
Config class and source list
Author: jgg
Date: 1998-07-09 05:12:27 GMT
Config class and source list
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index b8845a3b1..aaef3da8b 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.cc,v 1.5 1998/07/07 04:17:06 jgg Exp $ +// $Id: tagfile.cc,v 1.6 1998/07/09 05:12:32 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -17,6 +17,7 @@ #include <pkglib/tagfile.h> #include <pkglib/error.h> +#include <pkglib/init.h> #include <string> #include <stdio.h> @@ -158,6 +159,10 @@ bool pkgTagSection::Find(const char *Tag,const char *&Start, int main(int argc,char *argv[]) { + pkglibInitialize(*_config); + cout << _config->Find("APT::arch") << endl; + cout << _config->FindDir("DIR::Etc::sourcelist") << endl; + { File CacheF("./cache",File::WriteEmpty); DynamicMMap Map(CacheF,MMap::Public); |