summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-09-28 19:40:55 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-09-28 19:40:55 +1000
commit853e1535a77bfff114ce73a86da5e1808df5fb93 (patch)
tree5f3b3ba1db4be7a6095b7e4ca06a2527f479a462
parent11d0d6ad340f27792d63dc59186ccf876b765ade (diff)
- (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error
on Solaris 8 w/out /dev/random or prngd. Patch from rl at math.technion.ac.il.
-rw-r--r--ChangeLog7
-rw-r--r--entropy.c1
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3093904f..2a14dacf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+20060928
+ - (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error
+ on Solaris 8 w/out /dev/random or prngd. Patch from rl at
+ math.technion.ac.il.
+
20060926
- (dtucker) [bufaux.h] nuke bufaux.h; it's already gone from OpenBSD and not
referenced any more. ok djm@
@@ -5488,4 +5493,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4558.2.3 2006/09/28 09:09:11 dtucker Exp $
+$Id: ChangeLog,v 1.4558.2.4 2006/09/28 09:40:55 dtucker Exp $
diff --git a/entropy.c b/entropy.c
index 4f19c876..ccabb136 100644
--- a/entropy.c
+++ b/entropy.c
@@ -36,6 +36,7 @@
#endif
#include <stdarg.h>
#include <unistd.h>
+#include <signal.h>
#include <openssl/rand.h>
#include <openssl/crypto.h>