1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-11-27 04:46:26 +01:00

Merge branch 'master' of https://github.com/phpseclib/phpseclib into openssl-support

This commit is contained in:
terrafrost 2014-12-31 14:38:22 -06:00
commit c6c1e8dcb0
2 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,6 @@ class Net_SFTP_Stream
* Rather than re-create the connection we re-use instances if possible
*
* @var Array
* @access static
*/
static $instances;

View File

@ -1128,6 +1128,7 @@ class Net_SSH1
$padding_length = 8 - ($temp['length'] & 7);
$length = $temp['length'] + $padding_length;
$raw = '';
while ($length > 0) {
$temp = fread($this->fsock, $length);