Sfoglia il codice sorgente

DropPrivs: Hard-fail if the user does not exist

Git-Dch: ignore
Julian Andres Klode 11 anni fa
parent
commit
ca8e327ab7
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      apt-pkg/contrib/fileutl.cc

+ 1 - 1
apt-pkg/contrib/fileutl.cc

@@ -2187,7 +2187,7 @@ bool DropPrivs()
    const std::string nobody = _config->Find("APT::User::Nobody", "_apt");
    const std::string nobody = _config->Find("APT::User::Nobody", "_apt");
    struct passwd *pw = getpwnam(nobody.c_str());
    struct passwd *pw = getpwnam(nobody.c_str());
    if (pw == NULL)
    if (pw == NULL)
-      return _error->Warning("No user %s, can not drop rights", nobody.c_str());
+      return _error->Error("No user %s, can not drop rights", nobody.c_str());
 
 
 #if __gnu_linux__
 #if __gnu_linux__
    // see prctl(2), needs linux3.5
    // see prctl(2), needs linux3.5