diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-10-10 19:30:45 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-10-10 19:30:45 +0000 |
| commit | 0890dc6f446e4a9316b8360784052bb90e4be1c9 (patch) | |
| tree | c44414fd45cc9dff8da53590dbf2ca2c5ab6a365 | |
| parent | da91462d5e0540c530c514766e2e43aad06ef431 (diff) | |
Notes
| -rw-r--r-- | lib/libc/gen/popen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/popen.c b/lib/libc/gen/popen.c index 8cb79500b799b..d7ea414b0820e 100644 --- a/lib/libc/gen/popen.c +++ b/lib/libc/gen/popen.c @@ -84,7 +84,7 @@ popen(command, type) return (NULL); } - switch (pid = vfork()) { + switch (pid = fork()) { case -1: /* Error. */ (void)close(pdes[0]); (void)close(pdes[1]); |
