diff options
Diffstat (limited to 'usr.bin/apply')
-rw-r--r-- | usr.bin/apply/apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c index 78e9062..37a77b7 100644 --- a/usr.bin/apply/apply.c +++ b/usr.bin/apply/apply.c @@ -207,7 +207,7 @@ system(command) return(1); omask = sigblock(sigmask(SIGCHLD)); - switch(pid = vfork()) { + switch(pid = fork()) { case -1: /* error */ err(1, "fork"); case 0: /* child */ |