use mkdtemp also on 1.3I and up

This commit is contained in:
hubertf 1999-03-02 03:04:06 +00:00
parent c9234a4571
commit bae5f0c988
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,11 @@
/* $NetBSD: pen.c,v 1.14 1999/01/19 17:02:01 hubertf Exp $ */ /* $NetBSD: pen.c,v 1.15 1999/03/02 03:04:06 hubertf Exp $ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #ifndef lint
#if 0 #if 0
static const char *rcsid = "from FreeBSD Id: pen.c,v 1.25 1997/10/08 07:48:12 charnier Exp"; static const char *rcsid = "from FreeBSD Id: pen.c,v 1.25 1997/10/08 07:48:12 charnier Exp";
#else #else
__RCSID("$NetBSD: pen.c,v 1.14 1999/01/19 17:02:01 hubertf Exp $"); __RCSID("$NetBSD: pen.c,v 1.15 1999/03/02 03:04:06 hubertf Exp $");
#endif #endif
#endif #endif
@ -108,7 +108,8 @@ make_playpen(char *pen, size_t pensize, size_t sz)
if (!find_play_pen(pen, pensize, sz)) if (!find_play_pen(pen, pensize, sz))
return NULL; return NULL;
#if defined(NetBSD1_3) || (NetBSD <= 199713) /* values from 1.3.2 */ #if (defined(NetBSD1_3) || (NetBSD <= 199713)) && (NetBSD1_3 <9)
/* values from 1.3.2/1.3I */
/* mkdtemp(3) is not present on 1.3.3 and below */ /* mkdtemp(3) is not present on 1.3.3 and below */
if (!mktemp(pen)) { if (!mktemp(pen)) {
cleanup(0); cleanup(0);