[openssh-commits] [openssh] 01/01: upstream: Fix "WARNING: line 6 disappeared in /etc/moduli, giving up"
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Jul 3 11:09:03 AEST 2018
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 6f56fe4b9578b0627667f8bce69d4d938a88324c
Author: millert at openbsd.org <millert at openbsd.org>
Date: Tue Jun 26 11:23:59 2018 +0000
upstream: Fix "WARNING: line 6 disappeared in /etc/moduli, giving up"
when choosing a prime. An extra increment of linenum snuck in as part of the
conversion to getline(). OK djm@ markus@
OpenBSD-Commit-ID: 0019225cb52ed621b71cd9f19ee2e78e57e3dd38
---
dh.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dh.c b/dh.c
index 16eb1327..faa19a16 100644
--- a/dh.c
+++ b/dh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dh.c,v 1.64 2018/06/06 18:29:18 markus Exp $ */
+/* $OpenBSD: dh.c,v 1.65 2018/06/26 11:23:59 millert Exp $ */
/*
* Copyright (c) 2000 Niels Provos. All rights reserved.
*
@@ -190,7 +190,6 @@ choose_dh(int min, int wantbits, int max)
linenum = 0;
which = arc4random_uniform(bestcount);
while (getline(&line, &linesize, f) != -1) {
- linenum++;
if (!parse_prime(linenum, line, &dhg))
continue;
if ((dhg.size > max || dhg.size < min) ||
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list