We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 87f7113 + d5553b9 commit 2118dcbCopy full SHA for 2118dcb
NEWS
@@ -88,6 +88,9 @@ PHP NEWS
88
(Adam Baratz)
89
. Fixed bug #73396 (bigint columns are returned as strings). (Adam Baratz)
90
91
+- posix:
92
+ . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoh)
93
+
94
- Session:
95
. Fixed bug #73461 (Prohibit session save handler recursion). (Yasuo)
96
. PR #2233 Removed register_globals related code and "!" can be used as $_SESSION key name. (Yasuo)
ext/posix/config.m4
@@ -21,7 +21,7 @@ int main(int argc, char *argv[])
21
{
22
char buf[64];
23
24
- return ttyname_r(0, buf, 64) ? 1 : 0;
+ return !ttyname_r(0, buf, 64);
25
}
26
],[
27
AC_MSG_RESULT([yes])
0 commit comments