Gitweb:
http://git.exim.org/exim.git/commitdiff/cae6e576b589efbe9e22cd65e5f890b21ce84f02
Commit: cae6e576b589efbe9e22cd65e5f890b21ce84f02
Parent: 201f5254b5bbba620893cd607ea182bc25c123d2
Author: Phil Pennock <pdp@???>
AuthorDate: Sun May 27 01:34:36 2012 -0400
Committer: Phil Pennock <pdp@???>
CommitDate: Sun May 27 01:34:36 2012 -0400
">" -> ">=" for EXIM_CLIENT_DH_MIN_BITS+10
---
src/src/tls-gnu.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index 214007e..e2fcb33 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -503,7 +503,7 @@ if (rc < 0)
* So we ask for less, and proceed on a wing and a prayer.
* First attempt, subtracted 3 for 2233 and got 2240.
*/
- if (dh_bits > EXIM_CLIENT_DH_MIN_BITS + 10)
+ if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
{
dh_bits_gen = dh_bits - 10;
DEBUG(D_tls)