diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-03 00:43:31 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-03 00:43:31 +0800 |
commit | cbd3d5e3a535111b4cd6736d6aff432a252845d2 (patch) | |
tree | f71b44acb3546843d4d1d4343428bbff1df28e5b /common-algo.c | |
parent | 78fbed8c3eda1d7f3e0ffa41b54cd3c6ae31a0fe (diff) |
Put some #ifdef options around first-follows options in case they
need to be disabled
--HG--
branch : kexguess
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common-algo.c b/common-algo.c index b698611..c74463c 100644 --- a/common-algo.c +++ b/common-algo.c @@ -216,7 +216,9 @@ algo_type sshhostkey[] = { algo_type sshkex[] = { {"diffie-hellman-group14-sha1", DROPBEAR_KEX_DH_GROUP14, NULL, 1, NULL}, {"diffie-hellman-group1-sha1", DROPBEAR_KEX_DH_GROUP1, NULL, 1, NULL}, +#ifdef USE_KEXGUESS2 {KEXGUESS2_ALGO_NAME, KEXGUESS2_ALGO_ID, NULL, 1, NULL}, +#endif {NULL, 0, NULL, 0, NULL} }; |