aboutsummaryrefslogtreecommitdiff
path: root/toys/other
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-03-11 22:09:15 -0500
committerRob Landley <rob@landley.net>2020-03-11 22:09:15 -0500
commit114541b98e755bd28a9386008a352065bd942875 (patch)
tree6a90b20d308978d354e2cf0cea4c5e1446febfb0 /toys/other
parent42be28f77458618c128d32d9273f6eca7f73a971 (diff)
downloadtoybox-114541b98e755bd28a9386008a352065bd942875.tar.gz
Redo NOFORK plumbing so commands like eval/unset can access/edit shell state.
Diffstat (limited to 'toys/other')
-rw-r--r--toys/other/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/help.c b/toys/other/help.c
index 686f862b..179dd4e7 100644
--- a/toys/other/help.c
+++ b/toys/other/help.c
@@ -42,7 +42,7 @@ void help_main(void)
{
int i;
- // If called with no arguments as a builtin form the shell, show all builtins
+ // If called with no arguments as a builtin from the shell, show all builtins
if (toys.rebound && !*toys.optargs && !toys.optflags) {
for (i = 0; i < toys.toycount; i++) {
if (!(toy_list[i].flags&(TOYFLAG_NOFORK|TOYFLAG_MAYFORK))) continue;