aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/find/function.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>1998-10-13 14:52:33 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>1998-10-13 14:52:33 +0000
commit1fd98d7d880e470809cc3284ef04a03bf3490b02 (patch)
tree2d0429f5c6effd4e4d3c841a030205ca692d3745 /usr.bin/find/function.c
parent0ffc35a46540c54dc1537a602e1e4af78282abad (diff)
Notes
Diffstat (limited to 'usr.bin/find/function.c')
-rw-r--r--usr.bin/find/function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index 18102969bf62..1ffdd5236186 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -308,7 +308,7 @@ f_exec(plan, entry)
/* make sure find output is interspersed correctly with subprocesses */
fflush(stdout);
- switch (pid = vfork()) {
+ switch (pid = fork()) {
case -1:
err(1, "fork");
/* NOTREACHED */
@@ -414,7 +414,7 @@ f_execdir(plan, entry)
fflush(stdout);
fflush(stderr);
- switch (pid = vfork()) {
+ switch (pid = fork()) {
case -1:
err(1, "fork");
/* NOTREACHED */