diff options
Diffstat (limited to 'moduli.c')
-rw-r--r-- | moduli.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: moduli.c,v 1.30 2015/01/20 23:14:00 deraadt Exp $ */ | 1 | /* $OpenBSD: moduli.c,v 1.31 2016/09/12 01:22:38 deraadt 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> |
@@ -41,7 +41,6 @@ | |||
41 | 41 | ||
42 | #ifdef WITH_OPENSSL | 42 | #ifdef WITH_OPENSSL |
43 | 43 | ||
44 | #include <sys/param.h> /* MAX */ | ||
45 | #include <sys/types.h> | 44 | #include <sys/types.h> |
46 | 45 | ||
47 | #include <openssl/bn.h> | 46 | #include <openssl/bn.h> |
@@ -609,7 +608,7 @@ prime_test(FILE *in, FILE *out, u_int32_t trials, u_int32_t generator_wanted, | |||
609 | 608 | ||
610 | if (checkpoint_file != NULL) | 609 | if (checkpoint_file != NULL) |
611 | last_processed = read_checkpoint(checkpoint_file); | 610 | last_processed = read_checkpoint(checkpoint_file); |
612 | last_processed = start_lineno = MAX(last_processed, start_lineno); | 611 | last_processed = start_lineno = MAXIMUM(last_processed, start_lineno); |
613 | if (end_lineno == ULONG_MAX) | 612 | if (end_lineno == ULONG_MAX) |
614 | debug("process from line %lu from pipe", last_processed); | 613 | debug("process from line %lu from pipe", last_processed); |
615 | else | 614 | else |