summaryrefslogtreecommitdiff
path: root/usr.bin/tn3270
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/tn3270')
-rw-r--r--usr.bin/tn3270/sys_curses/system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tn3270/sys_curses/system.c b/usr.bin/tn3270/sys_curses/system.c
index 3137c43aefd..46668849160 100644
--- a/usr.bin/tn3270/sys_curses/system.c
+++ b/usr.bin/tn3270/sys_curses/system.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: system.c,v 1.3 1996/12/06 02:09:04 deraadt Exp $ */
+/* $OpenBSD: system.c,v 1.4 1997/04/04 18:41:33 deraadt Exp $ */
/*-
* Copyright (c) 1988 The Regents of the University of California.
@@ -35,7 +35,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)system.c 4.5 (Berkeley) 4/26/91";*/
-static char rcsid[] = "$OpenBSD: system.c,v 1.3 1996/12/06 02:09:04 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: system.c,v 1.4 1997/04/04 18:41:33 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -643,7 +643,7 @@ char *argv[];
/* First, create verification file. */
do {
- keyname = mktemp(strdup("/tmp/apiXXXXXX"));
+ keyname = mktemp(strdup("/tmp/apiXXXXXXXXXX"));
fd = open(keyname, O_RDWR|O_CREAT|O_EXCL, IREAD|IWRITE);
} while ((fd == -1) && (errno == EEXIST));