From ebfb2a5cdb7222c1b0ac8ba8ce6b55789f1c4956 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Wed, 14 Sep 2011 20:37:30 +0200 Subject: auth: fix spelling in error message --- src/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.c b/src/auth.c index 19ef8aa..8d1acf0 100644 --- a/src/auth.c +++ b/src/auth.c @@ -1756,7 +1756,7 @@ SSH_PACKET_CALLBACK(ssh_packet_userauth_info_request) { ssh_log(session,SSH_LOG_PACKET,"kbdint: %d prompts",nprompts); if (nprompts > KBDINT_MAX_PROMPT) { 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); ssh_kbdint_free(session->kbdint); session->kbdint = NULL; -- cgit