Remove trailing commas in modified method calls

This commit is contained in:
Robert 2024-07-24 09:27:44 -04:00
parent cc7fdd59e0
commit e5d94c817c

View File

@ -2681,7 +2681,7 @@ class SSH2
$response = $this->get_binary_packet_or_close(
NET_SSH2_MSG_USERAUTH_SUCCESS,
NET_SSH2_MSG_USERAUTH_FAILURE,
NET_SSH2_MSG_USERAUTH_PK_OK,
NET_SSH2_MSG_USERAUTH_PK_OK
);
list($type) = Strings::unpackSSH2('C', $response);
@ -2717,7 +2717,7 @@ class SSH2
$response = $this->get_binary_packet_or_close(
NET_SSH2_MSG_USERAUTH_SUCCESS,
NET_SSH2_MSG_USERAUTH_FAILURE,
NET_SSH2_MSG_USERAUTH_FAILURE
);
list($type) = Strings::unpackSSH2('C', $response);