HAS_MKSTEMP vs. HAVE_MKSTEMP (From Fredrik Höglund)

This commit is contained in:
Benjamin Herrenschmidt 2006-02-13 05:03:13 +00:00
parent 1a4f20541a
commit 4839e91fca
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-02-13 Benjamin Herrenschmidt <benh@kernel.crashing.org>
* Xprint/Util.c: (XpOpenTmpFile):
HAS_MKSTEMP vs. HAVE_MKSTEMP (From Fredrik Höglund)
2006-02-13 Benjamin Herrenschmidt <benh@kernel.crashing.org>
* cfb/Makefile.am:

View File

@ -303,7 +303,7 @@ XpFinishDocData(
return Success;
}
#ifndef HAS_MKSTEMP
#ifndef HAVE_MKSTEMP
static
char *XpDirName(char *fname)
{
@ -330,7 +330,7 @@ XpOpenTmpFile(
char **fname,
FILE **stream)
{
#ifndef HAS_MKSTEMP
#ifndef HAVE_MKSTEMP
char *fn = NULL;
/* note that there is a small race condition here... */