From b180e5a76678f697b2a368e2ef607d299d06a3ae Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 26 May 2006 14:24:56 +0000 Subject: - use portability wrapper define bb_setpgrp. --- init/init_shared.c | 3 ++- loginutils/login.c | 2 +- shell/msh.c | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/init/init_shared.c b/init/init_shared.c index 51e1496c2..6404da55a 100644 --- a/init/init_shared.c +++ b/init/init_shared.c @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -26,7 +27,7 @@ int bb_shutdown_system(unsigned long magic) /* Don't kill ourself */ signal(SIGTERM,SIG_IGN); signal(SIGHUP,SIG_IGN); - setpgrp(); + bb_setpgrp; /* Allow Ctrl-Alt-Del to reboot system. */ #ifndef RB_ENABLE_CAD diff --git a/loginutils/login.c b/loginutils/login.c index 88123c0aa..46766c551 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -147,7 +147,7 @@ int login_main(int argc, char **argv) else snprintf ( fromhost, sizeof( fromhost ) - 1, " on `%.100s'", tty ); - setpgrp(); + bb_setpgrp; openlog ( "login", LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH ); 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) -- cgit v1.2.3