Merge branch '2.0' into 3.0

This commit is contained in:
terrafrost 2023-07-02 11:18:17 -05:00
commit 9341e090c5
1 changed files with 3 additions and 0 deletions

View File

@ -2199,6 +2199,9 @@ class SFTP extends SSH2
if ($local_start >= 0) {
fseek($fp, $local_start);
$size -= $local_start;
} elseif ($mode & self::RESUME) {
fseek($fp, $offset);
$size -= $offset;
}
} elseif ($dataCallback) {
$size = 0;