From 74f1c9ed7bc84520c312b1c19d69f7d4a4fcc988 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Mon, 11 Oct 2021 08:58:43 -0500 Subject: [PATCH] SSH2: CS adjustments --- phpseclib/Net/SSH2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpseclib/Net/SSH2.php b/phpseclib/Net/SSH2.php index f9577320..9aeb56c6 100644 --- a/phpseclib/Net/SSH2.php +++ b/phpseclib/Net/SSH2.php @@ -3756,7 +3756,7 @@ class Net_SSH2 if (!empty($this->channel_buffers[$client_channel])) { switch ($this->channel_status[$client_channel]) { case NET_SSH2_MSG_CHANNEL_REQUEST: - foreach ($this->channel_buffers[$client_channel] as $i=>$packet) { + foreach ($this->channel_buffers[$client_channel] as $i => $packet) { switch (ord($packet[0])) { case NET_SSH2_MSG_CHANNEL_SUCCESS: case NET_SSH2_MSG_CHANNEL_FAILURE: