--- ray/src/util/netproc.c 2003/10/27 10:32:06 2.12 +++ ray/src/util/netproc.c 2003/11/11 16:24:06 2.14 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: netproc.c,v 2.12 2003/10/27 10:32:06 schorsch Exp $"; +static const char RCSid[] = "$Id: netproc.c,v 2.14 2003/11/11 16:24:06 greg Exp $"; #endif /* * Parallel network process handling routines @@ -15,7 +15,6 @@ static const char RCSid[] = "$Id: netproc.c,v 2.12 200 #include "selcall.h" #include "netproc.h" #include "paths.h" -#include "vfork.h" PSERVER *pslist = NULL; /* global process server list */ @@ -173,7 +172,7 @@ int (*compf)(); exit(1); } /* start child process */ - if ((pid = vfork()) == 0) { + if ((pid = fork()) == 0) { close(pfd[0]); /* connect stderr to pipe */ if (pfd[1] != 2) { dup2(pfd[1], 2);