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:
parent
d51b72abbf
commit
b89c488f43
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user