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 3c23d1b + 51d4877 commit d5553b9Copy full SHA for d5553b9
NEWS
@@ -18,6 +18,9 @@ PHP NEWS
18
- Phar:
19
. Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)
20
21
+- posix:
22
+ . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoh)
23
+
24
- Session:
25
. Fixed bug #69582 (session not readable by root in CLI). (EvgeniySpinov)
26
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);
}
],[
27
AC_MSG_RESULT([yes])
0 commit comments