diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-10-09 07:57:35 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-10-09 07:57:35 +0000 |
| commit | f67f0ac833ebeeb1d4f4632dbbc0c7a463ec4a57 (patch) | |
| tree | a8c1b28b61def800e1b752d930757584919421e1 | |
| parent | a7ec6793d0b5a6bbdc577b92ea76c45c175587c1 (diff) | |
Notes
| -rw-r--r-- | usr.bin/find/function.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c index 6bd85b5cfa058..c316b9df5eac6 100644 --- a/usr.bin/find/function.c +++ b/usr.bin/find/function.c @@ -239,6 +239,9 @@ f_exec(plan, entry) if (plan->flags == F_NEEDOK && !queryuser(plan->e_argv)) return (0); + /* make sure find output is interspersed correctly with subprocesses */ + fflush(stdout); + switch (pid = vfork()) { case -1: err(1, "fork"); |
