SSH1: typo

This commit is contained in:
terrafrost 2020-02-04 06:14:40 -06:00
parent c2be7e6480
commit 6cb500d7c8

View File

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