diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-26 14:24:56 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-26 14:24:56 +0000 |
commit | b180e5a76678f697b2a368e2ef607d299d06a3ae (patch) | |
tree | 5584440b892d7cd966ab9db679af5531ac56104e /shell | |
parent | 08421e1d0cf1938947553b02b0788b09e11e5c0d (diff) |
- use portability wrapper define bb_setpgrp.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/msh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/msh.c b/shell/msh.c index 39aecdf10..d8353e0a2 100644 --- a/shell/msh.c +++ b/shell/msh.c @@ -3031,7 +3031,7 @@ forkexec(REGISTER struct op *t, int *pin, int *pout, int act, char **wp) } else { /* put non-interactive processes into a different process group. * we don't support jobs, but this is at least sane: see Bug 659 */ - setpgrp(); + bb_setpgrp; } if (t->type == TPAREN) |