1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-30 04:39:02 +01:00

SSH2: fix issue with reconnecting via ping()

This commit is contained in:
terrafrost 2019-03-23 18:42:40 -05:00
parent 849f997633
commit f111bf94b6

View File

@ -3408,7 +3408,7 @@ class Net_SSH2
return false;
}
foreach ($this->auth as $auth) {
$result = call_user_func_array(array(&$this, 'parent::login'), $auth);
$result = call_user_func_array(array(&$this, 'login'), $auth);
}
return $result;
}