From fd81eb78979bad35b07091e176a1738d97f40f9c Mon Sep 17 00:00:00 2001 From: Greg Alexander Date: Tue, 29 Dec 2020 10:11:49 -0500 Subject: [PATCH] Remove #ifndef guards around host key filenames because they are essential #defines. I think they just were there from an ancient cut and paste? --- dropbear/localoptions.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dropbear/localoptions.h b/dropbear/localoptions.h index 44b5433..40bbdda 100644 --- a/dropbear/localoptions.h +++ b/dropbear/localoptions.h @@ -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.