From e2ad63305117aec5b8f44d0894e2459a06326131 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 8 Jan 2001 17:51:55 +0000 Subject: [PATCH] Anonymous SF bug report #128053 point out that the #ifdef for including "tmpfile" in the posix_methods[] array is wrong -- should be HAVE_TMPFILE, not HAVE_TMPNAM. --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 470967448a5..b57bc02e6f6 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -5357,7 +5357,7 @@ static PyMethodDef posix_methods[] = { #ifdef HAVE_STATVFS {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__}, #endif -#ifdef HAVE_TMPNAM +#ifdef HAVE_TMPFILE {"tmpfile", posix_tmpfile, METH_VARARGS, posix_tmpfile__doc__}, #endif #ifdef HAVE_TEMPNAM