summaryrefslogtreecommitdiff
path: root/dh.c
diff options
context:
space:
mode:
Diffstat (limited to 'dh.c')
-rw-r--r--dh.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dh.c b/dh.c
index 16eb13276..faa19a166 100644
--- a/dh.c
+++ b/dh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh.c,v 1.64 2018/06/06 18:29:18 markus Exp $ */ 1/* $OpenBSD: dh.c,v 1.65 2018/06/26 11:23:59 millert Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Niels Provos. All rights reserved. 3 * Copyright (c) 2000 Niels Provos. All rights reserved.
4 * 4 *
@@ -190,7 +190,6 @@ choose_dh(int min, int wantbits, int max)
190 linenum = 0; 190 linenum = 0;
191 which = arc4random_uniform(bestcount); 191 which = arc4random_uniform(bestcount);
192 while (getline(&line, &linesize, f) != -1) { 192 while (getline(&line, &linesize, f) != -1) {
193 linenum++;
194 if (!parse_prime(linenum, line, &dhg)) 193 if (!parse_prime(linenum, line, &dhg))
195 continue; 194 continue;
196 if ((dhg.size > max || dhg.size < min) || 195 if ((dhg.size > max || dhg.size < min) ||