aboutsummaryrefslogtreecommitdiff
path: root/src/auth.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2011-09-14 20:37:30 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2011-09-14 20:37:30 +0200
commitebfb2a5cdb7222c1b0ac8ba8ce6b55789f1c4956 (patch)
treecf1cb7399b14ed8ab141462b763c1ac7d5584683 /src/auth.c
parent33cf16488bcf417306d9de8540bba5296247eb65 (diff)
downloadlibssh-ebfb2a5cdb7222c1b0ac8ba8ce6b55789f1c4956.tar.gz
libssh-ebfb2a5cdb7222c1b0ac8ba8ce6b55789f1c4956.tar.xz
libssh-ebfb2a5cdb7222c1b0ac8ba8ce6b55789f1c4956.zip
auth: fix spelling in error message
Diffstat (limited to 'src/auth.c')
-rw-r--r--src/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth.c b/src/auth.c
index 19ef8aa5..8d1acf0d 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;