aboutsummaryrefslogtreecommitdiffhomepage
path: root/exec.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-02-03 19:34:26 +1000
committerGravatar axel <axel@liljencrantz.se>2006-02-03 19:34:26 +1000
commitf71cd494def1ef2e7078cf1fdf617e9600f10234 (patch)
tree6fd0ff1b112fa7d10bf81eeabe18de04ff6da198 /exec.c
parent264c06500643124d8d3f9f8e5b40e8cd0e4efc47 (diff)
prompt and terminal functions should not be run in interactive mode
darcs-hash:20060203093426-ac50b-5e6bf8382c6a5fb4b409439eddf612fffa9c752e.gz
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index 4491ebb5..ac430f6b 100644
--- a/exec.c
+++ b/exec.c
@@ -406,7 +406,7 @@ static int setup_child_process( job_t *j, process_t *p )
if (j->pgid == 0)
j->pgid = pid;
- /* Wait till shell puts os in our own group */
+ /* Wait till shell puts us in our own group */
while( getpgrp() != j->pgid )
sleep(0);
}