summaryrefslogtreecommitdiffstats
path: root/src/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bind.c')
-rw-r--r--src/bind.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/bind.c b/src/bind.c
index bc5fc18..b2bcb68 100644
--- a/src/bind.c
+++ b/src/bind.c
@@ -172,7 +172,11 @@ int ssh_bind_listen(ssh_bind sshbind) {
}
if (sshbind->dsakey) {
- rc = ssh_pki_import_privkey_file((ssh_session)sshbind, sshbind->dsakey, NULL, &sshbind->dsa);
+ rc = ssh_pki_import_privkey_file(sshbind->dsakey,
+ NULL,
+ NULL,
+ NULL,
+ &sshbind->dsa);
if (rc == SSH_ERROR) {
return SSH_ERROR;
}
@@ -184,7 +188,11 @@ int ssh_bind_listen(ssh_bind sshbind) {
}
if (sshbind->rsakey) {
- rc = ssh_pki_import_privkey_file((ssh_session)sshbind, sshbind->rsakey, NULL, &sshbind->rsa);
+ rc = ssh_pki_import_privkey_file(sshbind->rsakey,
+ NULL,
+ NULL,
+ NULL,
+ &sshbind->rsa);
if (rc == SSH_ERROR) {
return SSH_ERROR;
}