Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-11-09 18:19:42 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2017-11-09 18:19:42 +0300
commit2fee2bce6f9c67c0836598e340bee8ae2e980212 (patch)
tree1218f997470965b7686a17a20767f072b964219d
parent1b510900e24459353922a1bc83c0b58bc8bafe1c (diff)
inetd: fix for running by non-root
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/inetd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/inetd.c b/networking/inetd.c
index 67984accb..4dfa0089a 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -1488,7 +1488,7 @@ int inetd_main(int argc UNUSED_PARAM, char **argv)
bb_error_msg("non-root must run services as himself");
goto do_exit1;
}
- if (pwd->pw_uid != 0) {
+ if (pwd->pw_uid != real_uid) {
if (sep->se_group)
pwd->pw_gid = grp->gr_gid;
/* initgroups, setgid, setuid: */