aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mail
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-10-10 19:18:30 +0000
committerBruce Evans <bde@FreeBSD.org>1998-10-10 19:18:30 +0000
commitdb6b691087dc3e2c3320873a8e68639efe775982 (patch)
tree5b073cbce3fab41afd3c289be8f3032d7fb597ff /usr.bin/mail
parent4689d219ff5b9cdc0b12391447da9fa5cd8533f8 (diff)
Notes
Diffstat (limited to 'usr.bin/mail')
-rw-r--r--usr.bin/mail/popen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mail/popen.c b/usr.bin/mail/popen.c
index 467d24a9ff91..3d877fa70304 100644
--- a/usr.bin/mail/popen.c
+++ b/usr.bin/mail/popen.c
@@ -231,7 +231,7 @@ start_command(cmd, mask, infd, outfd, a0, a1, a2)
{
int pid;
- if ((pid = vfork()) < 0) {
+ if ((pid = fork()) < 0) {
perror("fork");
return -1;
}