mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-29 01:03:57 +03:00
auth: fix spelling in error message
This commit is contained in:
@@ -1756,7 +1756,7 @@ SSH_PACKET_CALLBACK(ssh_packet_userauth_info_request) {
|
|||||||
ssh_log(session,SSH_LOG_PACKET,"kbdint: %d prompts",nprompts);
|
ssh_log(session,SSH_LOG_PACKET,"kbdint: %d prompts",nprompts);
|
||||||
if (nprompts > KBDINT_MAX_PROMPT) {
|
if (nprompts > KBDINT_MAX_PROMPT) {
|
||||||
ssh_set_error(session, SSH_FATAL,
|
ssh_set_error(session, SSH_FATAL,
|
||||||
"Too much prompt asked from server: %u (0x%.4x)",
|
"Too much prompts requested by the server: %u (0x%.4x)",
|
||||||
nprompts, nprompts);
|
nprompts, nprompts);
|
||||||
ssh_kbdint_free(session->kbdint);
|
ssh_kbdint_free(session->kbdint);
|
||||||
session->kbdint = NULL;
|
session->kbdint = NULL;
|
||||||
|
|||||||
Reference in New Issue
Block a user