]> git.saurik.com Git - apt.git/commitdiff
DropPrivs: Use APT::Sandbox::User instead of Apt::User::Nobody
authorJulian Andres Klode <jak@debian.org>
Wed, 24 Sep 2014 20:26:41 +0000 (22:26 +0200)
committerJulian Andres Klode <jak@debian.org>
Wed, 24 Sep 2014 20:28:39 +0000 (22:28 +0200)
Git-Dch: ignore

apt-pkg/contrib/fileutl.cc

index 9d09dcdd3ce13e0c8f17fc7c39f76b7eebbff351..e81f32a522755407938dc95f9c82c4cae8e80030 100644 (file)
@@ -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