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 Wemm 1997-04-25 06:42:57 +00:00
parent 4c244a38ad
commit 300fb94053
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25128

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;