summaryrefslogtreecommitdiff
path: root/entropy.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-06-27 23:36:08 +1000
committerDamien Miller <djm@mindrot.org>2001-06-27 23:36:08 +1000
commit79b332dd6748980cf9c8af39e3194a7e272b9256 (patch)
treea0cbb7fba6e8746a658cd94d52ff45293e628c63 /entropy.c
parent649d999b4bab2d2ff5fadf7c77f2d685ece4708c (diff)
downloadopenssh-git-79b332dd6748980cf9c8af39e3194a7e272b9256.tar.gz
- (djm) Fix a few warnings the above turned up
Diffstat (limited to 'entropy.c')
-rw-r--r--entropy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/entropy.c b/entropy.c
index 8bd540dc..554a72b0 100644
--- a/entropy.c
+++ b/entropy.c
@@ -40,7 +40,7 @@
#include "pathnames.h"
#include "log.h"
-RCSID("$Id: entropy.c,v 1.36 2001/03/18 22:38:16 djm Exp $");
+RCSID("$Id: entropy.c,v 1.37 2001/06/27 13:36:08 djm Exp $");
#ifndef offsetof
# define offsetof(type, member) ((size_t) &((type *)0)->member)
@@ -68,7 +68,7 @@ RCSID("$Id: entropy.c,v 1.36 2001/03/18 22:38:16 djm Exp $");
# define SAVED_IDS_WORK_WITH_SETEUID
#endif
-void
+static void
check_openssl_version(void)
{
if (SSLeay() != OPENSSL_VERSION_NUMBER)
@@ -182,7 +182,7 @@ done:
#else /* !USE_PRNGD */
#ifdef RANDOM_POOL
/* Collect entropy from /dev/urandom or pipe */
-int
+static int
get_random_bytes(unsigned char *buf, int len)
{
int random_pool;