summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--main/network.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 746b8a4a4d..f16ac1d9b7 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ PHP NEWS
. Fixed bug #79650 (php-win.exe 100% cpu lockup). (cmb)
. Fixed bug #79668 (get_defined_functions(true) may miss functions). (cmb,
Nikita)
+ . Fixed possibly unsupported timercmp() usage. (cmb)
- Filter:
. Fixed bug #73527 (Invalid memory access in php_filter_strip). (cmb)
diff --git a/main/network.c b/main/network.c
index f00c775c6f..3c8e81cc81 100644
--- a/main/network.c
+++ b/main/network.c
@@ -919,7 +919,7 @@ skip_bind:
if (timeout) {
gettimeofday(&time_now, NULL);
- if (timercmp(&time_now, &limit_time, >=)) {
+ if (!timercmp(&time_now, &limit_time, <)) {
/* time limit expired; don't attempt any further connections */
fatal = 1;
} else {