summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--entropy.c8
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ca297bf6..78a23fe4f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
2 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c 2 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
3 openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally 3 openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally
4 include paths.h. Fixes build error on Solaris. 4 include paths.h. Fixes build error on Solaris.
5 - (dtucker) [entropy.c] More fcntl.h, this time on AIX (and probably
6 others).
5 7
620060710 820060710
7 - (dtucker) [INSTALL] New autoconf version: 2.60. 9 - (dtucker) [INSTALL] New autoconf version: 2.60.
@@ -4844,4 +4846,4 @@
4844 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4846 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4845 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4847 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4846 4848
4847$Id: ChangeLog,v 1.4386 2006/07/11 08:00:06 dtucker Exp $ 4849$Id: ChangeLog,v 1.4387 2006/07/11 09:01:51 dtucker Exp $
diff --git a/entropy.c b/entropy.c
index d60583b34..b98e3c859 100644
--- a/entropy.c
+++ b/entropy.c
@@ -27,6 +27,14 @@
27#include <sys/types.h> 27#include <sys/types.h>
28#include <sys/wait.h> 28#include <sys/wait.h>
29 29
30#ifdef HAVE_SYS_STAT_H
31# include <sys/stat.h>
32#endif
33
34#ifdef HAVE_FCNTL_H
35# include <fcntl.h>
36#endif
37
30#include <openssl/rand.h> 38#include <openssl/rand.h>
31#include <openssl/crypto.h> 39#include <openssl/crypto.h>
32#include <openssl/err.h> 40#include <openssl/err.h>