summaryrefslogtreecommitdiff
path: root/libbb/vfork_daemon_rexec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/vfork_daemon_rexec.c')
-rw-r--r--libbb/vfork_daemon_rexec.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c
index 1567d89be..2c4c930b2 100644
--- a/libbb/vfork_daemon_rexec.c
+++ b/libbb/vfork_daemon_rexec.c
@@ -146,6 +146,15 @@ int run_nofork_applet_prime(struct nofork_save_area *old, int applet_no, char **
146 memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0])); 146 memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0]));
147 /* Finally we can call NOFORK applet's main() */ 147 /* Finally we can call NOFORK applet's main() */
148 rc = applet_main[applet_no](argc, tmp_argv); 148 rc = applet_main[applet_no](argc, tmp_argv);
149
150 /* The whole reason behind nofork_save_area is that <applet>_main
151 * may exit non-locally! For example, in hush Ctrl-Z tries to
152 * (modulo bugs) to dynamically create child (backgrounded task)
153 * if it detects that Ctrl-Z was pressed when a NOFORK was running!
154 * Testcase: interactive "rm -i".
155 * Don't fool yourself into thinking "and <applet>_main() returns
156 * quickly here" and removing "useless" nofork_save_area code. */
157
149 } else { /* xfunc died in NOFORK applet */ 158 } else { /* xfunc died in NOFORK applet */
150 /* in case they meant to return 0... */ 159 /* in case they meant to return 0... */
151 if (rc == -2222) 160 if (rc == -2222)
@@ -154,7 +163,7 @@ int run_nofork_applet_prime(struct nofork_save_area *old, int applet_no, char **
154 163
155 /* Restoring globals */ 164 /* Restoring globals */
156 restore_nofork_data(old); 165 restore_nofork_data(old);
157 return rc; 166 return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
158} 167}
159 168
160int run_nofork_applet(int applet_no, char **argv) 169int run_nofork_applet(int applet_no, char **argv)