]> granicus.if.org Git - python/commitdiff
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
authorLarry Hastings <larry@hastings.org>
Mon, 12 Aug 2013 17:49:30 +0000 (13:49 -0400)
committerLarry Hastings <larry@hastings.org>
Mon, 12 Aug 2013 17:49:30 +0000 (13:49 -0400)
Misc/NEWS
Modules/posixmodule.c

index 4401418d76578ad39c1c0727ec6cd9dbca990c0b..d04309071c1294af8f73eb44e176965012664fdd 100644 (file)
--- 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.
 
index 32c85b8be91ae04061b7065c7bdb0280f3847726..f3234a45389ad51e38442674bce2cd5db995d6cd 100644 (file)
@@ -11965,6 +11965,10 @@ static char *have_functions[] = {
     "HAVE_FCHOWN",
 #endif
 
+#ifdef HAVE_FCHOWNAT
+    "HAVE_FCHOWNAT",
+#endif
+
 #ifdef HAVE_FEXECVE
     "HAVE_FEXECVE",
 #endif