aboutsummaryrefslogtreecommitdiff
path: root/src/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bind.c')
-rw-r--r--src/bind.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/bind.c b/src/bind.c
index e86f8210..5097801c 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;
}
}