1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-26 20:24:39 +01:00

SFTP: unpack() -> unpackSSH2()

This commit is contained in:
terrafrost 2019-08-22 05:01:33 -05:00
parent d51b72abbf
commit b89c488f43

View File

@ -2752,7 +2752,7 @@ class SFTP extends SSH2
list($attr['atime'], $attr['mtime']) = Strings::unpackSSH2('NN', $response);
break;
case NET_SFTP_ATTR_EXTENDED: // 0x80000000
list($count) = Strings::unpack('N', $response);
list($count) = Strings::unpackSSH2('N', $response);
for ($i = 0; $i < $count; $i++) {
list($key, $value) = Strings::unpackSSH2('ss', $response);
$attr[$key] = $value;