summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorbitblt <bitblt@cvs.openbsd.org>1997-07-29 02:54:08 +0000
committerbitblt <bitblt@cvs.openbsd.org>1997-07-29 02:54:08 +0000
commitd8717a8bb954e55bbf7b432efcc4ff0ae2af2ca4 (patch)
tree8e8ea9f957ba4b1bd25d9fa9526aa0d98cf46ad9 /usr.bin
parente9e91966cbb9fec3ddf37292dfc0d1cdd86d4929 (diff)
Changed vfork() to fork() -- pointed out by Theo
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/apply/apply.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c
index 1226bfd5777..26f0fd844a7 100644
--- a/usr.bin/apply/apply.c
+++ b/usr.bin/apply/apply.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: apply.c,v 1.3 1997/01/15 23:42:09 millert Exp $ */
+/* $OpenBSD: apply.c,v 1.4 1997/07/29 02:54:07 bitblt Exp $ */
/* $NetBSD: apply.c,v 1.3 1995/03/25 03:38:23 glass Exp $ */
/*-
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)apply.c 8.4 (Berkeley) 4/4/94";
#else
-static char rcsid[] = "$OpenBSD: apply.c,v 1.3 1997/01/15 23:42:09 millert Exp $";
+static char rcsid[] = "$OpenBSD: apply.c,v 1.4 1997/07/29 02:54:07 bitblt Exp $";
#endif
#endif /* not lint */
@@ -214,7 +214,7 @@ system(command)
return(1);
omask = sigblock(sigmask(SIGCHLD));
- switch(pid = vfork()) {
+ switch(pid = fork()) {
case -1: /* error */
err(1, "fork");
case 0: /* child */