Merge branch 'master' into php5

* master:
  SSH2: removed redundant rtrim
This commit is contained in:
Andreas Fischer 2014-09-28 12:43:54 +02:00
commit 92c3127448

View File

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