Skip to content
Snippets Groups Projects
Commit 8a08b2f7 authored by Tim Wickberg's avatar Tim Wickberg
Browse files

Fix ssh key path.

parent dadfbe5e
No related branches found
No related tags found
No related merge requests found
...@@ -71,8 +71,8 @@ ...@@ -71,8 +71,8 @@
*/ */
static char *hostkey_priv = "/etc/ssh/ssh_host_rsa_key"; static char *hostkey_priv = "/etc/ssh/ssh_host_rsa_key";
static char *hostkey_pub = "/etc/ssh/ssh_host_rsa_key.pub"; static char *hostkey_pub = "/etc/ssh/ssh_host_rsa_key.pub";
static char *priv_format = "%s/ssh/id_rsa"; static char *priv_format = "%s/.ssh/id_rsa";
static char *pub_format = "%s/ssh/id_rsa.pub"; static char *pub_format = "%s/.ssh/id_rsa.pub";
void *_handle_channel(void *x); void *_handle_channel(void *x);
void *_keepalive_engine(void *x); void *_keepalive_engine(void *x);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment