1
0
mirror of http://galexander.org/git/simplesshd.git synced 2025-01-03 19:50:55 +00:00

Remove #ifndef guards around host key filenames because they are

essential #defines.  I think they just were there from an ancient cut and
paste?
This commit is contained in:
Greg Alexander 2020-12-29 10:11:49 -05:00
parent 98d7116ee9
commit fd81eb7897

View File

@ -9,15 +9,9 @@
#endif
/* Default hostkey paths - these can be specified on the command line */
#ifndef DSS_PRIV_FILENAME
#define DSS_PRIV_FILENAME conf_path_file("dropbear_dss_host_key")
#endif
#ifndef RSA_PRIV_FILENAME
#define RSA_PRIV_FILENAME conf_path_file("dropbear_rsa_host_key")
#endif
#ifndef ECDSA_PRIV_FILENAME
#define ECDSA_PRIV_FILENAME conf_path_file("dropbear_ecdsa_host_key")
#endif
/* Set NON_INETD_MODE if you require daemon functionality (ie Dropbear listens
* on chosen ports and keeps accepting connections. This is the default.