mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-10 07:40:58 +00:00
Merge branch '1.0' of https://github.com/phpseclib/phpseclib into 1.0
This commit is contained in:
commit
b5ac556213
@ -3880,7 +3880,11 @@ class Net_SSH2
|
|||||||
*/
|
*/
|
||||||
function getLastError()
|
function getLastError()
|
||||||
{
|
{
|
||||||
return $this->errors[count($this->errors) - 1];
|
$count = count($this->errors);
|
||||||
|
|
||||||
|
if ($count > 0) {
|
||||||
|
return $this->errors[$count - 1];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -18,7 +18,7 @@ class Unit_File_ASN1Test extends PhpseclibTestCase
|
|||||||
$KDC_REP = array(
|
$KDC_REP = array(
|
||||||
'type' => FILE_ASN1_TYPE_SEQUENCE,
|
'type' => FILE_ASN1_TYPE_SEQUENCE,
|
||||||
'children' => array(
|
'children' => array(
|
||||||
'pvno' => array(
|
'pvno' => array(
|
||||||
'constant' => 0,
|
'constant' => 0,
|
||||||
'optional' => true,
|
'optional' => true,
|
||||||
'explicit' => true,
|
'explicit' => true,
|
||||||
|
Loading…
Reference in New Issue
Block a user