SSH2: removed redundant rtrim

This commit is contained in:
Cezary Kluczyński 2014-09-28 12:39:54 +02:00
parent b6b0b2dec8
commit 0692a1ea7d

View File

@ -971,7 +971,7 @@ class Net_SSH2
$timeout-= $elapsed;
if ($timeout <= 0) {
user_error(rtrim("Cannot connect to $host. Timeout error"));
user_error("Cannot connect to $host. Timeout error");
return false;
}
@ -984,7 +984,7 @@ class Net_SSH2
// on windows this returns a "Warning: Invalid CRT parameters detected" error
// the !count() is done as a workaround for <https://bugs.php.net/42682>
if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) {
user_error(rtrim("Cannot connect to $host. Banner timeout"));
user_error("Cannot connect to $host. Banner timeout");
return false;
}