Aleksander Machniak
2013-05-16 893c27404516eefc2776e7db4b3f102f89867e09
Fix Net_Socket bug with no timeout (failed connection in managesieve plugin)
1 files modified
7 ■■■■ changed files
program/lib/Net/Socket.php 7 ●●●● patch | view | raw | blame | history
program/lib/Net/Socket.php
@@ -267,7 +267,12 @@
            $this->timeout = $seconds + $microseconds/1000000;
        }
        return stream_set_timeout($this->fp, (int) $seconds, (int) $microseconds);
        if ($this->timeout > 0) {
            return stream_set_timeout($this->fp, (int) $seconds, (int) $microseconds);
        }
        else {
            return false;
        }
    }
    /**