diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-26 14:24:56 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-26 14:24:56 +0000 |
commit | 73d6f297805faa5ab01168d0d29a723010e96730 (patch) | |
tree | 5584440b892d7cd966ab9db679af5531ac56104e /shell | |
parent | d8b13fc98237d2f3f0afac43226364a9cdce055a (diff) | |
download | busybox-w32-73d6f297805faa5ab01168d0d29a723010e96730.tar.gz busybox-w32-73d6f297805faa5ab01168d0d29a723010e96730.tar.bz2 busybox-w32-73d6f297805faa5ab01168d0d29a723010e96730.zip |
- use portability wrapper define bb_setpgrp.
git-svn-id: svn://busybox.net/trunk/busybox@15192 69ca8d6d-28ef-0310-b511-8ec308f3f277
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) | |||
3031 | } else { | 3031 | } else { |
3032 | /* put non-interactive processes into a different process group. | 3032 | /* put non-interactive processes into a different process group. |
3033 | * we don't support jobs, but this is at least sane: see Bug 659 */ | 3033 | * we don't support jobs, but this is at least sane: see Bug 659 */ |
3034 | setpgrp(); | 3034 | bb_setpgrp; |
3035 | } | 3035 | } |
3036 | 3036 | ||
3037 | if (t->type == TPAREN) | 3037 | if (t->type == TPAREN) |