summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-05-28 23:23:54 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-05-28 23:23:54 +0800
commit4b035bfde9bf44629a3c7d6bc65ebddbfae85d52 (patch)
tree09831a022c2b7af894c3ee76d9dd72d73e89176e
parent7e95eccb007d0ecf9d30dd89505263a0c0c3dd12 (diff)
downloaddropbear-4b035bfde9bf44629a3c7d6bc65ebddbfae85d52.tar.gz
Fix typo DROPBEAR_NORMAL_DH
-rw-r--r--dh_groups.c4
-rw-r--r--dh_groups.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/dh_groups.c b/dh_groups.c
index 164cb48..920f3f6 100644
--- a/dh_groups.c
+++ b/dh_groups.c
@@ -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 @@ const unsigned char dh_p_16[DH_P_16_LEN] = {
/* Same for all groups */
const int DH_G_VAL = 2;
-#endif
+#endif /* DROPBEAR_NORMAL_DH */
diff --git a/dh_groups.h b/dh_groups.h
index aa25621..c995937 100644
--- a/dh_groups.h
+++ b/dh_groups.h
@@ -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 unsigned char dh_p_16[DH_P_16_LEN];
extern const int DH_G_VAL;
-#endif
+#endif /* DROPBEAR_NORMAL_DH */
#endif