mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
don't whine if all we need to do is remove a bg job
This commit is contained in:
parent
0d8cc1670c
commit
07abfe2092
2 changed files with 4 additions and 2 deletions
3
lash.c
3
lash.c
|
|
@ -319,8 +319,9 @@ static int builtin_fg_bg(struct child_prog *child)
|
|||
if ( (i=kill(- job->pgrp, SIGCONT)) < 0) {
|
||||
if (i == ESRCH) {
|
||||
remove_job(&job_list, job);
|
||||
} else {
|
||||
perror_msg("kill (SIGCONT)");
|
||||
}
|
||||
perror_msg("kill (SIGCONT)");
|
||||
}
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
|
|
|
|||
|
|
@ -319,8 +319,9 @@ static int builtin_fg_bg(struct child_prog *child)
|
|||
if ( (i=kill(- job->pgrp, SIGCONT)) < 0) {
|
||||
if (i == ESRCH) {
|
||||
remove_job(&job_list, job);
|
||||
} else {
|
||||
perror_msg("kill (SIGCONT)");
|
||||
}
|
||||
perror_msg("kill (SIGCONT)");
|
||||
}
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
|
|
|
|||
Loading…
Reference in a new issue