]> granicus.if.org Git - php/commitdiff
Fixed bug #71219 configure script incorrectly checks for ttyname_r
authorJoe Watkins <krakjoe@php.net>
Wed, 11 Jan 2017 08:09:10 +0000 (08:09 +0000)
committerJoe Watkins <krakjoe@php.net>
Wed, 11 Jan 2017 08:09:10 +0000 (08:09 +0000)
NEWS
ext/posix/config.m4

diff --git a/NEWS b/NEWS
index 3a8919aece56a3f91c718d88bfcfa4614d14a3c2..3338ba9753381552ff4d42c92d12ecde2c1a4124 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -19,6 +19,9 @@ PHP                                                                        NEWS
 - Phar:
   . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)
 
+- posix:
+  . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoth)
+
 - Session:
   . Fixed bug #69582 (session not readable by root in CLI). (EvgeniySpinov)
 
index 9dfa70d1db483f8ddc69419356148e972992a918..0c4c30561e01664fa85a96509ad47edda71aaf3b 100644 (file)
@@ -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])