diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2008-03-12 19:42:40 +0000 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2008-03-12 19:42:40 +0000 |
commit | ebbca06b045cec6367deb4eb7a947cde2090dedc (patch) | |
tree | 6aea83202ff4bdd66be42f152ec9beb4683c2cd4 /samplesshd.c | |
parent | feb4a932472bc5bcb2e13d7e60bc89ab70aabd7a (diff) | |
download | libssh-ebbca06b045cec6367deb4eb7a947cde2090dedc.tar.gz libssh-ebbca06b045cec6367deb4eb7a947cde2090dedc.tar.xz libssh-ebbca06b045cec6367deb4eb7a947cde2090dedc.zip |
last win32 changes from keisial
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@152 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'samplesshd.c')
-rw-r--r-- | samplesshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samplesshd.c b/samplesshd.c index f4f0bc12..c6088d0b 100644 --- a/samplesshd.c +++ b/samplesshd.c @@ -49,8 +49,8 @@ int main(int argc, char **argv){ int sftp=0; int i; ssh_options_getopt(options,&argc,argv); - ssh_options_set_dsa_server_key(options,"/etc/ssh/ssh_host_dsa_key"); - ssh_options_set_rsa_server_key(options,"/etc/ssh/ssh_host_rsa_key"); + ssh_options_set_dsa_server_key(options, KEYS_FOLDER "ssh_host_dsa_key"); + ssh_options_set_rsa_server_key(options, KEYS_FOLDER "ssh_host_rsa_key"); ssh_bind=ssh_bind_new(); ssh_bind_set_options(ssh_bind,options); if(ssh_bind_listen(ssh_bind)<0){ |