summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2014-09-24 22:07:27 +0200
committerJulian Andres Klode <jak@debian.org>2014-09-24 22:07:27 +0200
commitca8e327ab742c892485d2cd1478c756ac40b6912 (patch)
tree2df20cd7f6adc2d6ad4a9efaf8450e4aaea8f12b
parent48ed0977d23aeddfea58be967082ded0833fe227 (diff)
DropPrivs: Hard-fail if the user does not exist
Git-Dch: ignore
-rw-r--r--apt-pkg/contrib/fileutl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc
index b092a7798..9d09dcdd3 100644
--- a/apt-pkg/contrib/fileutl.cc
+++ b/apt-pkg/contrib/fileutl.cc
@@ -2187,7 +2187,7 @@ bool DropPrivs()
const std::string nobody = _config->Find("APT::User::Nobody", "_apt");
struct passwd *pw = getpwnam(nobody.c_str());
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__
// see prctl(2), needs linux3.5