1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-30 04:39:02 +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); list($attr['atime'], $attr['mtime']) = Strings::unpackSSH2('NN', $response);
break; break;
case NET_SFTP_ATTR_EXTENDED: // 0x80000000 case NET_SFTP_ATTR_EXTENDED: // 0x80000000
list($count) = Strings::unpack('N', $response); list($count) = Strings::unpackSSH2('N', $response);
for ($i = 0; $i < $count; $i++) { for ($i = 0; $i < $count; $i++) {
list($key, $value) = Strings::unpackSSH2('ss', $response); list($key, $value) = Strings::unpackSSH2('ss', $response);
$attr[$key] = $value; $attr[$key] = $value;