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.
1 parent 6a9efa2 commit 51d4877Copy full SHA for 51d4877
NEWS
@@ -19,6 +19,9 @@ PHP NEWS
19
- Phar:
20
. Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)
21
22
+- posix:
23
+ . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoth)
24
+
25
- Session:
26
. Fixed bug #69582 (session not readable by root in CLI). (EvgeniySpinov)
27
ext/posix/config.m4
@@ -21,7 +21,7 @@ int main(int argc, char *argv[])
{
char buf[64];
- return ttyname_r(0, buf, 64) ? 1 : 0;
+ return !ttyname_r(0, buf, 64);
}
],[
AC_MSG_RESULT([yes])
0 commit comments