diff options
author | Julian Andres Klode <jak@debian.org> | 2014-09-24 22:26:41 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2014-09-24 22:28:39 +0200 |
commit | b8dae9a106791ef9f47a516ccb62ab6050f22282 (patch) | |
tree | c63f62e99ae30f767c9928f28faac308d2ce23d3 /apt-pkg/contrib | |
parent | ca8e327ab742c892485d2cd1478c756ac40b6912 (diff) |
DropPrivs: Use APT::Sandbox::User instead of Apt::User::Nobody
Git-Dch: ignore
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 9d09dcdd3..e81f32a52 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/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 |