Przeglądaj źródła

convert FileExists to DirectoryExists to check if the path is really a
directory (and to have a better method name in the error message if not)

David Kalnischkies 16 lat temu
rodzic
commit
448eaf8b59
3 zmienionych plików z 8 dodań i 8 usunięć
  1. 2 2
      apt-pkg/init.cc
  2. 2 2
      apt-pkg/policy.cc
  3. 4 4
      apt-pkg/sourcelist.cc

+ 2 - 2
apt-pkg/init.cc

@@ -94,10 +94,10 @@ bool pkgInitConfig(Configuration &Cnf)
 
 
    // Read the configuration parts dir
    // Read the configuration parts dir
    string Parts = Cnf.FindDir("Dir::Etc::parts");
    string Parts = Cnf.FindDir("Dir::Etc::parts");
-   if (FileExists(Parts) == true)
+   if (DirectoryExists(Parts) == true)
       Res &= ReadConfigDir(Cnf,Parts);
       Res &= ReadConfigDir(Cnf,Parts);
    else
    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
    // Read the main config file
    string FName = Cnf.FindFile("Dir::Etc::main");
    string FName = Cnf.FindFile("Dir::Etc::main");

+ 2 - 2
apt-pkg/policy.cc

@@ -291,9 +291,9 @@ bool ReadPinDir(pkgPolicy &Plcy,string Dir)
    if (Dir.empty() == true)
    if (Dir.empty() == true)
       Dir = _config->FindDir("Dir::Etc::PreferencesParts");
       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;
       return true;
    }
    }
 
 

+ 4 - 4
apt-pkg/sourcelist.cc

@@ -199,15 +199,15 @@ bool pkgSourceList::ReadMainList()
    
    
    if (FileExists(Main) == true)
    if (FileExists(Main) == true)
       Res &= ReadAppend(Main);
       Res &= ReadAppend(Main);
-   else if (FileExists(Parts) == false)
+   else if (DirectoryExists(Parts) == false)
       // Only warn if there are no sources.list.d.
       // 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);
       Res &= ReadSourceDir(Parts);
    else if (FileExists(Main) == false)
    else if (FileExists(Main) == false)
       // Only warn if there is no sources.list file.
       // 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;
    return Res;
 }
 }