summaryrefslogtreecommitdiff
path: root/bin/pax/tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pax/tables.c')
-rw-r--r--bin/pax/tables.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/pax/tables.c b/bin/pax/tables.c
index 51221d159be..1f36fb4f28e 100644
--- a/bin/pax/tables.c
+++ b/bin/pax/tables.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tables.c,v 1.9 1997/09/01 18:30:00 deraadt Exp $ */
+/* $OpenBSD: tables.c,v 1.10 1998/07/03 06:01:20 deraadt Exp $ */
/* $NetBSD: tables.c,v 1.4 1995/03/21 09:07:45 cgd Exp $ */
/*-
@@ -42,7 +42,7 @@
#if 0
static char sccsid[] = "@(#)tables.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: tables.c,v 1.9 1997/09/01 18:30:00 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: tables.c,v 1.10 1998/07/03 06:01:20 deraadt Exp $";
#endif
#endif /* not lint */
@@ -377,7 +377,7 @@ ftime_start()
* get random name and create temporary scratch file, unlink name
* so it will get removed on exit
*/
- pt = strdup("/tmp/paxXXXXXX");
+ pt = strdup("/tmp/paxXXXXXXXXXX");
if ((ffd = mkstemp(pt)) < 0) {
syswarn(1, errno, "Unable to create temporary file: %s", pt);
free(pt);
@@ -1222,7 +1222,7 @@ dir_start()
/*
* unlink the file so it goes away at termination by itself
*/
- pt = strdup("/tmp/paxXXXXXX");
+ pt = strdup("/tmp/paxXXXXXXXXXX");
if ((dirfd = mkstemp(pt)) >= 0) {
(void)unlink(pt);
free(pt);