Signed-off-by: Alan Dunn <[email protected]>
---
src/bind.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/bind.c b/src/bind.c
index e391738..95f9ae9 100644
--- a/src/bind.c
+++ b/src/bind.c
@@ -422,6 +422,15 @@ int ssh_bind_accept_fd(ssh_bind sshbind, ssh_session
session, socket_t fd){
ssh_socket_set_fd(session->socket, fd);
ssh_socket_get_poll_handle_out(session->socket);
+ /* We must try to import any keys that could be imported in case
+ * we are not using ssh_bind_listen (which is the other place
+ * where keys can be imported) on this ssh_bind and are instead
+ * only using ssh_bind_accept_fd to manage sockets ourselves.
+ */
+ if (ssh_bind_import_keys(sshbind) != SSH_OK) {
+ return SSH_ERROR;
+ }
+
#ifdef HAVE_ECC
if (sshbind->ecdsa) {
session->srv.ecdsa_key = ssh_key_dup(sshbind->ecdsa);
--
1.7.9.5