replace vfork by fork

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9529 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-01-27 20:11:38 +00:00
parent cba14b853b
commit 57c800fa37

View File

@@ -123,7 +123,7 @@ susystem(s, userid)
int status;
pid_t pid;
pid = vfork();
pid = fork();
switch (pid) {
case -1:
return (127);