aboutsummaryrefslogtreecommitdiff
path: root/libssh/wrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/wrapper.c')
-rw-r--r--libssh/wrapper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/wrapper.c b/libssh/wrapper.c
index c3a31237..af5bbe07 100644
--- a/libssh/wrapper.c
+++ b/libssh/wrapper.c
@@ -1087,9 +1087,9 @@ int crypt_set_algorithms_server(ssh_session session){
client=session->client_kex.methods[SSH_HOSTKEYS];
match=ssh_find_matching(server,client);
if(match && !strcmp(match,"ssh-dss"))
- session->hostkeys=TYPE_DSS;
+ session->hostkeys=SSH_KEYTYPE_DSS;
else if(match && !strcmp(match,"ssh-rsa"))
- session->hostkeys=TYPE_RSA;
+ session->hostkeys=SSH_KEYTYPE_RSA;
else {
ssh_set_error(session, SSH_FATAL, "Cannot know what %s is into %s",
match ? match : NULL, server);