summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-01-20 11:02:26 +1100
committerDarren Tucker <dtucker@zip.com.au>2005-01-20 11:02:26 +1100
commitf0e792ec1c84322e5e31c2ad2c89459f053c3388 (patch)
treeea12eafdf462351177ad286cc6fdfbc389991ab3
parentb3509014cec85818fb74d3b90073f3ca8745253e (diff)
- dtucker@cvs.openbsd.org 2005/01/17 03:25:46
[moduli.c] Correct spelling: SCHNOOR->SCHNORR; ok djm@
-rw-r--r--ChangeLog5
-rw-r--r--moduli.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d3eb1047a..925239349 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,9 @@
16 - jmc@cvs.openbsd.org 2005/01/08 00:41:19 16 - jmc@cvs.openbsd.org 2005/01/08 00:41:19
17 [sshd_config.5] 17 [sshd_config.5]
18 `login'(n) -> `log in'(v); 18 `login'(n) -> `log in'(v);
19 - dtucker@cvs.openbsd.org 2005/01/17 03:25:46
20 [moduli.c]
21 Correct spelling: SCHNOOR->SCHNORR; ok djm@
19 22
2020050118 2320050118
21 - (dtucker) [INSTALL Makefile.in configure.ac survey.sh.in] Implement 24 - (dtucker) [INSTALL Makefile.in configure.ac survey.sh.in] Implement
@@ -1988,4 +1991,4 @@
1988 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 1991 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1989 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 1992 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1990 1993
1991$Id: ChangeLog,v 1.3613 2005/01/20 00:01:46 dtucker Exp $ 1994$Id: ChangeLog,v 1.3614 2005/01/20 00:02:26 dtucker Exp $
diff --git a/moduli.c b/moduli.c
index 581b03503..8b05248e2 100644
--- a/moduli.c
+++ b/moduli.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: moduli.c,v 1.9 2004/07/11 17:48:47 deraadt Exp $ */ 1/* $OpenBSD: moduli.c,v 1.10 2005/01/17 03:25:46 dtucker Exp $ */
2/* 2/*
3 * Copyright 1994 Phil Karn <karn@qualcomm.com> 3 * Copyright 1994 Phil Karn <karn@qualcomm.com>
4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com> 4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com>
@@ -56,7 +56,7 @@
56#define QTYPE_UNKNOWN (0) 56#define QTYPE_UNKNOWN (0)
57#define QTYPE_UNSTRUCTURED (1) 57#define QTYPE_UNSTRUCTURED (1)
58#define QTYPE_SAFE (2) 58#define QTYPE_SAFE (2)
59#define QTYPE_SCHNOOR (3) 59#define QTYPE_SCHNORR (3)
60#define QTYPE_SOPHIE_GERMAIN (4) 60#define QTYPE_SOPHIE_GERMAIN (4)
61#define QTYPE_STRONG (5) 61#define QTYPE_STRONG (5)
62 62
@@ -530,7 +530,7 @@ prime_test(FILE *in, FILE *out, u_int32_t trials, u_int32_t generator_wanted)
530 break; 530 break;
531 case QTYPE_UNSTRUCTURED: 531 case QTYPE_UNSTRUCTURED:
532 case QTYPE_SAFE: 532 case QTYPE_SAFE:
533 case QTYPE_SCHNOOR: 533 case QTYPE_SCHNORR:
534 case QTYPE_STRONG: 534 case QTYPE_STRONG:
535 case QTYPE_UNKNOWN: 535 case QTYPE_UNKNOWN:
536 debug2("%10u: (%u)", count_in, in_type); 536 debug2("%10u: (%u)", count_in, in_type);