diff --git a/phpseclib/Net/SSH2.php b/phpseclib/Net/SSH2.php index 2b1868f3..ad996d7b 100644 --- a/phpseclib/Net/SSH2.php +++ b/phpseclib/Net/SSH2.php @@ -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 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; }