summaryrefslogtreecommitdiffstats
path: root/usr.bin/calendar
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>1998-10-13 15:05:00 +0000
committerdes <des@FreeBSD.org>1998-10-13 15:05:00 +0000
commitefc55abc0285bfcd0d1f79e5cce0f6d1d3fa1657 (patch)
treee965442ded79809a001243c71d835e4d653b9130 /usr.bin/calendar
parent3ca80efd3ae02267b3cd6ee92f92c592e3892a1e (diff)
downloadFreeBSD-src-efc55abc0285bfcd0d1f79e5cce0f6d1d3fa1657.zip
FreeBSD-src-efc55abc0285bfcd0d1f79e5cce0f6d1d3fa1657.tar.gz
Missed one in the previous commit.
Diffstat (limited to 'usr.bin/calendar')
-rw-r--r--usr.bin/calendar/io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/calendar/io.c b/usr.bin/calendar/io.c
index 9634dac..7747fa1 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]);
OpenPOWER on IntegriCloud