Currently some settings are checked with #ifdef instead of #if : INETD_MODE and NON_INETD_MODE in svr-main.c DO_MOTD in svr-chansession.c and svr-runopts.c DROPBEAR_RSA and DROPBEAR_DSS in keyimport.c DROPBEAR_CLI_PUBKEY_AUTH in cli-runopts.c
Hans On Wed, Aug 3, 2016 at 7:56 PM, Hans Harder <[email protected]> wrote: > I see that localoptions.h now can be used to enable/disable options which > are in default_options.h and sysoptions.h... nice > > There is a wrong definition in the default_options.h > /* Whether to support "-c" and "-m" flags to choose ciphers/MACs at > runtime */ > #ifndef ENABLE_USER_ALGO_LIST > #define ENABLE_USER_ALGO_LIST 1 > #endif > > Should be > /* Whether to support "-c" and "-m" flags to choose ciphers/MACs at > runtime */ > #ifndef DROPBEAR_USER_ALGO_LIST > #define DROPBEAR_USER_ALGO_LIST 1 > #endif > > > Hans > > >
