From bc2ab9b41449dee287beeb1417dbd08e119b0536 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 9 Nov 2011 10:19:22 +0100 Subject: bind: Add more error messages. --- src/bind.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/bind.c b/src/bind.c index e86f821..5097801 100644 --- a/src/bind.c +++ b/src/bind.c @@ -178,10 +178,14 @@ int ssh_bind_listen(ssh_bind sshbind) { NULL, &sshbind->dsa); if (rc == SSH_ERROR) { + ssh_set_error(sshbind, SSH_FATAL, + "Failed to import private DSA host key"); return SSH_ERROR; } if (ssh_key_type(sshbind->dsa) != SSH_KEYTYPE_DSS) { + ssh_set_error(sshbind, SSH_FATAL, + "The DSA host key has the wrong type"); ssh_key_free(sshbind->dsa); return SSH_ERROR; } @@ -194,12 +198,16 @@ int ssh_bind_listen(ssh_bind sshbind) { NULL, &sshbind->rsa); if (rc == SSH_ERROR) { + ssh_set_error(sshbind, SSH_FATAL, + "Failed to import private RSA host key"); return SSH_ERROR; } if (ssh_key_type(sshbind->rsa) != SSH_KEYTYPE_RSA && ssh_key_type(sshbind->rsa) != SSH_KEYTYPE_RSA1) { - ssh_key_free(sshbind->dsa); + ssh_set_error(sshbind, SSH_FATAL, + "The RSA host key has the wrong type"); + ssh_key_free(sshbind->rsa); return SSH_ERROR; } } -- cgit