diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | moduli.c | 4 |
2 files changed, 6 insertions, 1 deletions
@@ -9,6 +9,9 @@ | |||
9 | - jmc@cvs.openbsd.org 2011/10/16 15:02:41 | 9 | - jmc@cvs.openbsd.org 2011/10/16 15:02:41 |
10 | [ssh-keygen.c] | 10 | [ssh-keygen.c] |
11 | put -K in the right place (usage()); | 11 | put -K in the right place (usage()); |
12 | - stsp@cvs.openbsd.org 2011/10/16 15:51:39 | ||
13 | [moduli.c] | ||
14 | add missing includes to unbreak tree; fix from rpointel | ||
12 | 15 | ||
13 | 20111001 | 16 | 20111001 |
14 | - (dtucker) [openbsd-compat/mktemp.c] Fix compiler warning. ok djm | 17 | - (dtucker) [openbsd-compat/mktemp.c] Fix compiler warning. ok djm |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: moduli.c,v 1.23 2011/10/16 11:02:46 dtucker Exp $ */ | 1 | /* $OpenBSD: moduli.c,v 1.24 2011/10/16 15:51:39 stsp 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> |
@@ -39,11 +39,13 @@ | |||
39 | 39 | ||
40 | #include "includes.h" | 40 | #include "includes.h" |
41 | 41 | ||
42 | #include <sys/param.h> | ||
42 | #include <sys/types.h> | 43 | #include <sys/types.h> |
43 | 44 | ||
44 | #include <openssl/bn.h> | 45 | #include <openssl/bn.h> |
45 | #include <openssl/dh.h> | 46 | #include <openssl/dh.h> |
46 | 47 | ||
48 | #include <errno.h> | ||
47 | #include <stdio.h> | 49 | #include <stdio.h> |
48 | #include <stdlib.h> | 50 | #include <stdlib.h> |
49 | #include <string.h> | 51 | #include <string.h> |