# HG changeset patch # User Matt Johnston # Date 1590679434 -28800 # Node ID ee6ccc2ecc47c8074aed946b877ccf63c832e6dd # Parent 8f93f37c01de630a31b955eddb443b3097091ea2 Fix typo DROPBEAR_NORMAL_DH diff -r 8f93f37c01de -r ee6ccc2ecc47 dh_groups.c --- a/dh_groups.c Thu May 28 20:01:48 2020 +0500 +++ b/dh_groups.c Thu May 28 23:23:54 2020 +0800 @@ -1,7 +1,7 @@ #include "options.h" #include "dh_groups.h" -#if DROPBEAR_DH_NORMAL +#if DROPBEAR_NORMAL_DH #if DROPBEAR_DH_GROUP1 /* diffie-hellman-group1-sha1 value for p */ @@ -94,4 +94,4 @@ /* Same for all groups */ const int DH_G_VAL = 2; -#endif +#endif /* DROPBEAR_NORMAL_DH */ diff -r 8f93f37c01de -r ee6ccc2ecc47 dh_groups.h --- a/dh_groups.h Thu May 28 20:01:48 2020 +0500 +++ b/dh_groups.h Thu May 28 23:23:54 2020 +0800 @@ -2,7 +2,7 @@ #define DROPBEAR_DH_GROUPS_H #include "options.h" -#if DROPBEAR_DH_NORMAL +#if DROPBEAR_NORMAL_DH #if DROPBEAR_DH_GROUP1 #define DH_P_1_LEN 128 @@ -21,6 +21,6 @@ extern const int DH_G_VAL; -#endif +#endif /* DROPBEAR_NORMAL_DH */ #endif