correct vfork()/exit() to vfork()/_exit(). This is far more important

now that vfork() actually works in FreeBSD for the first time.

Spotted by: se
This commit is contained in:
peter 1997-04-25 06:42:57 +00:00
parent d4f450005c
commit 93c713af2b

View File

@ -2098,7 +2098,7 @@ pexecute (search_flag, program, argv, not_last)
/* Exec the program. */
(*func) (program, argv);
perror_exec (program);
exit (-1);
_exit (1);
/* NOTREACHED */
return 0;