mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-14 02:11:20 +00:00
SSH2: fix "Expected SSH_FXP_STATUS or ..." error
This commit is contained in:
parent
8530cbca1a
commit
7bc0e61c1d
@ -3473,7 +3473,9 @@ class Net_SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->channel_status[$channel] = NET_SSH2_MSG_CHANNEL_CLOSE;
|
$this->channel_status[$channel] = NET_SSH2_MSG_CHANNEL_CLOSE;
|
||||||
return true;
|
if ($client_channel == $channel) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
case NET_SSH2_MSG_CHANNEL_EOF:
|
case NET_SSH2_MSG_CHANNEL_EOF:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user