From: Julian Andres Klode Date: Wed, 24 Sep 2014 18:02:54 +0000 (+0200) Subject: DropPrivs: Do not use an invalid return check for setgroups() X-Git-Tag: 1.1.exp3~9 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/3b084f06b65ea073176b26fd9e472dc0f76b44b0 DropPrivs: Do not use an invalid return check for setgroups() setgroups() returns 0 on success Git-Dch: ignore --- diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 8e7313e8f..98544b60c 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -2196,7 +2196,7 @@ bool DropPrivs() _error->Warning("PR_SET_NO_NEW_PRIVS failed with %i", ret); #endif - if (setgroups(1, &pw->pw_gid) != 1) + if (setgroups(1, &pw->pw_gid)) return _error->Errno("setgroups", "Failed to setgroups"); if (setegid(pw->pw_gid) != 0)