From 450288f508105c8e49a109287a5ae2faf4d24865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 13 Oct 1998 15:05:00 +0000 Subject: [PATCH] Missed one in the previous commit. --- usr.bin/calendar/io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/calendar/io.c b/usr.bin/calendar/io.c index 9634dac25a37..7747fa12e16e 100644 --- a/usr.bin/calendar/io.c +++ b/usr.bin/calendar/io.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: io.c,v 1.10 1997/06/23 06:52:13 charnier Exp $ */ #ifndef lint @@ -249,7 +249,7 @@ opencal() } if (pipe(pdes) < 0) return (NULL); - switch (vfork()) { + switch (fork()) { case -1: /* error */ (void)close(pdes[0]); (void)close(pdes[1]); @@ -311,7 +311,7 @@ closecal(fp) goto done; if (pipe(pdes) < 0) goto done; - switch (vfork()) { + switch (fork()) { case -1: /* error */ (void)close(pdes[0]); (void)close(pdes[1]);