Merge branch '3.0'

This commit is contained in:
terrafrost 2020-02-04 06:15:21 -06:00
commit 5f5fcda72d

View File

@ -1124,7 +1124,7 @@ class SSH1
while ($length > 0) {
$temp = fread($this->fsock, $length);
if (stlren($temp) != $length) {
if (strlen($temp) != $length) {
return false;
}
$raw.= $temp;