diff --git a/ChangeLog b/ChangeLog index 9fe191285..5250e7ef4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-02-13 Benjamin Herrenschmidt + + * Xprint/Util.c: (XpOpenTmpFile): + HAS_MKSTEMP vs. HAVE_MKSTEMP (From Fredrik Höglund) + 2006-02-13 Benjamin Herrenschmidt * cfb/Makefile.am: diff --git a/Xprint/Util.c b/Xprint/Util.c index 069595b9a..12a2562a4 100644 --- a/Xprint/Util.c +++ b/Xprint/Util.c @@ -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... */