SSH2: CS adjustment

This commit is contained in:
terrafrost 2023-04-21 15:39:01 -05:00
parent 21db83aeb7
commit 79b6f96870

View File

@ -4266,7 +4266,9 @@ class SSH2
if (strlen($packet) != $sent) {
$this->bitmap = 0;
$message = $sent === false ? ('Unable to write ' . strlen($packet) . ' bytes') : ("Only $sent of " . strlen($packet) . " bytes were sent");
$message = $sent === false ?
'Unable to write ' . strlen($packet) . ' bytes' :
"Only $sent of " . strlen($packet) . " bytes were sent";
throw new \RuntimeException($message);
}
}