Преглед изворни кода

DropPrivs: Use APT::Sandbox::User instead of Apt::User::Nobody

Git-Dch: ignore
Julian Andres Klode пре 11 година
родитељ
комит
b8dae9a106
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      apt-pkg/contrib/fileutl.cc

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

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