summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-10-18 16:05:55 +1100
committerDamien Miller <djm@mindrot.org>2011-10-18 16:05:55 +1100
commit91f3eaec886825c42cf6e38d4e2af0f52b5aa35f (patch)
tree87cec1ffebd4a8a448fb1beb399d4a3930d12638
parent927d82bc6a58b112e0a12f9ad12802c7637adef3 (diff)
downloadopenssh-git-91f3eaec886825c42cf6e38d4e2af0f52b5aa35f.tar.gz
- stsp@cvs.openbsd.org 2011/10/16 15:51:39
[moduli.c] add missing includes to unbreak tree; fix from rpointel
-rw-r--r--ChangeLog3
-rw-r--r--moduli.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9aaa421b..c3eb5757 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
- jmc@cvs.openbsd.org 2011/10/16 15:02:41
[ssh-keygen.c]
put -K in the right place (usage());
+ - stsp@cvs.openbsd.org 2011/10/16 15:51:39
+ [moduli.c]
+ add missing includes to unbreak tree; fix from rpointel
20111001
- (dtucker) [openbsd-compat/mktemp.c] Fix compiler warning. ok djm
diff --git a/moduli.c b/moduli.c
index f734d1c2..0d3948a4 100644
--- a/moduli.c
+++ b/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>
@@ -39,11 +39,13 @@
#include "includes.h"
+#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>