1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

server: Add ecdsa hostkey support.

This commit is contained in:
Andreas Schneider
2012-02-15 09:23:07 +01:00
parent 88d6e6253c
commit a3cb5b0707

View File

@@ -209,7 +209,7 @@ int ssh_bind_listen(ssh_bind sshbind) {
if (ssh_key_type(sshbind->dsa) != SSH_KEYTYPE_DSS) {
ssh_set_error(sshbind, SSH_FATAL,
"The DSA host key has the wrong type");
"The DSA host key has the wrong type: %d");
ssh_key_free(sshbind->dsa);
return SSH_ERROR;
}