From 1865be6ca46346a24d1c53ece5d638af4a91e574 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Thu, 26 Apr 2001 13:47:17 +0000 Subject: [PATCH] fix for bug #8994, courtesy tom.anheyer@berlinonline.de # Are we having another RC, and if so, can I MFH in time for it? --- ext/standard/fsock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/standard/fsock.c b/ext/standard/fsock.c index a3a8bf4ee1..014bb4ffe7 100644 --- a/ext/standard/fsock.c +++ b/ext/standard/fsock.c @@ -13,7 +13,7 @@ | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Paul Panotzki - Bunyip Information Systems | - | Jim Winstead (jimw@php.net) | + | Jim Winstead | | Sascha Schumann | +----------------------------------------------------------------------+ */ @@ -596,6 +596,7 @@ PHPAPI void php_sockset_timeout(int socket, struct timeval *timeout) SOCK_FIND(sock, socket); sock->timeout = *timeout; + sock->timeout_event = 0; } #define SOCK_FIND_AND_READ_MAX(max) \ -- 2.50.1