mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 17:57:12 +00:00
Fix Net_SFTP::filetype() block device recognition.
This commit is contained in:
parent
c2be2b5a3b
commit
6715c41e1f
@ -2367,7 +2367,7 @@ class Net_SFTP extends Net_SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
case NET_SFTP_BLOCK_DEVICE: return 'block';
|
case NET_SFTP_TYPE_BLOCK_DEVICE: return 'block';
|
||||||
case NET_SFTP_TYPE_CHAR_DEVICE: return 'char';
|
case NET_SFTP_TYPE_CHAR_DEVICE: return 'char';
|
||||||
case NET_SFTP_TYPE_DIRECTORY: return 'dir';
|
case NET_SFTP_TYPE_DIRECTORY: return 'dir';
|
||||||
case NET_SFTP_TYPE_FIFO: return 'fifo';
|
case NET_SFTP_TYPE_FIFO: return 'fifo';
|
||||||
|
Loading…
Reference in New Issue
Block a user