diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:21 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:21 +0000 |
commit | c7c1b0f62edbefb01efce67f64bd44397be36946 (patch) | |
tree | 5d3df8b575da338c9045c0523628957ae57cdfe8 /apt-pkg/init.cc | |
parent | 7deed45913546487c5162c3600a31e614e68a05a (diff) |
Small bug fixes
Author: jgg
Date: 1998-11-06 02:52:20 GMT
Small bug fixes
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r-- | apt-pkg/init.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index e504e4a14..e0ab46821 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: init.cc,v 1.11 1998/11/05 07:42:03 jgg Exp $ +// $Id: init.cc,v 1.12 1998/11/06 02:52:21 jgg Exp $ /* ###################################################################### Init - Initialize the package library @@ -54,7 +54,7 @@ bool pkgInitialize(Configuration &Cnf) // Read an alternate config file const char *Cfg = getenv("APT_CONFIG"); - if (Cfg != 0 && FileExists(FName) == true) + if (Cfg != 0 && FileExists(Cfg) == true) Res &= ReadConfigFile(Cnf,Cfg); if (Res == false) |