summaryrefslogtreecommitdiff
path: root/Xprint
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2006-02-13 05:03:13 +0000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2006-02-13 05:03:13 +0000
commit4839e91fcab4c344e672154a447d8c7035fce1f4 (patch)
tree1e2eb41584a3075d275d0f2ebd808db8888af325 /Xprint
parent1a4f20541a9f4f41f444d826d743899ea2dee2db (diff)
HAS_MKSTEMP vs. HAVE_MKSTEMP (From Fredrik Höglund)
Diffstat (limited to 'Xprint')
-rw-r--r--Xprint/Util.c4
1 files changed, 2 insertions, 2 deletions
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... */