aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 12e0aa0ce0b..5e8be77182b 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -443,7 +443,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
443 { 443 {
444 if (fd[0] >= 0) 444 if (fd[0] >= 0)
445 close (fd[0]); 445 close (fd[0]);
446#ifdef USG 446#if defined(USG) && !defined(BSD_PGRPS)
447 setpgrp (); 447 setpgrp ();
448#else 448#else
449 setpgrp (pid, pid); 449 setpgrp (pid, pid);
@@ -848,7 +848,7 @@ child_setup (in, out, err, new_argv, set_pgrp, current_dir)
848 close (err); 848 close (err);
849#endif /* not WINDOWSNT */ 849#endif /* not WINDOWSNT */
850 850
851#ifdef USG 851#if defined(USG) && !defined(BSD_PGRPS)
852#ifndef SETPGRP_RELEASES_CTTY 852#ifndef SETPGRP_RELEASES_CTTY
853 setpgrp (); /* No arguments but equivalent in this case */ 853 setpgrp (); /* No arguments but equivalent in this case */
854#endif 854#endif