diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2011-10-16 15:51:40 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2011-10-16 15:51:40 +0000 |
commit | a279c3bf32b7eeee1029f4ecc7430b9e99635df1 (patch) | |
tree | d0507e0f5d25cdf3392a38c8c326d76759ee93da | |
parent | 8ee1c192ee1a3a586cfdf4401432d0a6f964ac4e (diff) |
add missing includes to unbreak tree; fix from rpointel
-rw-r--r-- | usr.bin/ssh/moduli.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/moduli.c b/usr.bin/ssh/moduli.c index d74e0b6d575..f68e214cfd2 100644 --- a/usr.bin/ssh/moduli.c +++ b/usr.bin/ssh/moduli.c @@ -1,4 +1,4 @@ -/* $OpenBSD: moduli.c,v 1.23 2011/10/16 11:02:46 dtucker Exp $ */ +/* $OpenBSD: moduli.c,v 1.24 2011/10/16 15:51:39 stsp Exp $ */ /* * Copyright 1994 Phil Karn <karn@qualcomm.com> * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com> @@ -37,11 +37,13 @@ * Second step: test primes' safety (processor intensive) */ +#include <sys/param.h> #include <sys/types.h> #include <openssl/bn.h> #include <openssl/dh.h> +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |