aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2021-04-27 02:40:54 -0500
committerRob Landley <rob@landley.net>2021-04-27 02:40:54 -0500
commita28ad6de961169acf50d96427259f9eba6039b5d (patch)
tree1f5ccda911dd933fa0ab7976583818827786bd39 /main.c
parent2c30d4f7a6a6ee16f9149519f6e2634b58c281cb (diff)
downloadtoybox-a28ad6de961169acf50d96427259f9eba6039b5d.tar.gz
Use cheaper test that works with "toybox" name as a prefix.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 6e3da111..d5abe6e6 100644
--- a/main.c
+++ b/main.c
@@ -95,7 +95,7 @@ void toy_singleinit(struct toy_list *which, char *argv[])
for (toys.optc = 0; toys.optargs[toys.optc]; toys.optc++);
}
- if (strcmp(which->name, "toybox") && !(which->flags & TOYFLAG_NOFORK)) {
+ if (!(CFG_TOYBOX && which == toy_list) && !(which->flags & TOYFLAG_NOFORK)) {
toys.old_umask = umask(0);
if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);