]> git.saurik.com Git - apt.git/commitdiff
convert FileExists to DirectoryExists to check if the path is really a
authorDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 6 May 2010 09:55:54 +0000 (11:55 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 6 May 2010 09:55:54 +0000 (11:55 +0200)
directory (and to have a better method name in the error message if not)

apt-pkg/init.cc
apt-pkg/policy.cc
apt-pkg/sourcelist.cc

index 6310aff112a1ae94ecd4e587e1fed27ecf47dc49..60281deb3687b70166402e53f77848cd7882c112 100644 (file)
@@ -94,10 +94,10 @@ bool pkgInitConfig(Configuration &Cnf)
 
    // Read the configuration parts dir
    string Parts = Cnf.FindDir("Dir::Etc::parts");
-   if (FileExists(Parts) == true)
+   if (DirectoryExists(Parts) == true)
       Res &= ReadConfigDir(Cnf,Parts);
    else
-      _error->WarningE("FileExists",_("Unable to read %s"),Parts.c_str());
+      _error->WarningE("DirectoryExists",_("Unable to read %s"),Parts.c_str());
 
    // Read the main config file
    string FName = Cnf.FindFile("Dir::Etc::main");
index 479cf393549ef6eb67c760e1f63552a33b78c6ce..922efb0dddb1eb89235466d91420a384f9938a89 100644 (file)
@@ -291,9 +291,9 @@ bool ReadPinDir(pkgPolicy &Plcy,string Dir)
    if (Dir.empty() == true)
       Dir = _config->FindDir("Dir::Etc::PreferencesParts");
 
-   if (FileExists(Dir) == false)
+   if (DirectoryExists(Dir) == false)
    {
-      _error->WarningE("FileExists",_("Unable to read %s"),Dir.c_str());
+      _error->WarningE("DirectoryExists",_("Unable to read %s"),Dir.c_str());
       return true;
    }
 
index e13472fa664feb1cfa8f3632c9bfddb802a7e3ef..c3ec9865a5b12691a8b32f6b62b2af0185eb364f 100644 (file)
@@ -199,15 +199,15 @@ bool pkgSourceList::ReadMainList()
    
    if (FileExists(Main) == true)
       Res &= ReadAppend(Main);
-   else if (FileExists(Parts) == false)
+   else if (DirectoryExists(Parts) == false)
       // Only warn if there are no sources.list.d.
-      _error->WarningE("FileExists",_("Unable to read %s"),Main.c_str());
+      _error->WarningE("DirectoryExists", _("Unable to read %s"), Parts.c_str());
 
-   if (FileExists(Parts) == true)
+   if (DirectoryExists(Parts) == true)
       Res &= ReadSourceDir(Parts);
    else if (FileExists(Main) == false)
       // Only warn if there is no sources.list file.
-      _error->WarningE("FileExists",_("Unable to read %s"),Parts.c_str());
+      _error->WarningE("FileExists", _("Unable to read %s"), Main.c_str());
 
    return Res;
 }