From: Larry Hastings Date: Mon, 12 Aug 2013 17:49:30 +0000 (-0400) Subject: Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions. X-Git-Tag: v3.4.0a2~243^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00964ed216e8154c6e684e6c8822fb5d0a7f4b41;p=python Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions. --- diff --git a/Misc/NEWS b/Misc/NEWS index 4401418d76..d04309071c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1? Core and Builtins ----------------- +- Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions. + - Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 32c85b8be9..f3234a4538 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -11965,6 +11965,10 @@ static char *have_functions[] = { "HAVE_FCHOWN", #endif +#ifdef HAVE_FCHOWNAT + "HAVE_FCHOWNAT", +#endif + #ifdef HAVE_FEXECVE "HAVE_FEXECVE", #endif