- (djm) [ssh-rand-helper.c] Needs a bunch of headers

This commit is contained in:
Damien Miller 2006-03-15 14:02:36 +11:00
parent a623807860
commit 3717cdac60
2 changed files with 14 additions and 2 deletions

View File

@ -254,6 +254,7 @@
- (djm) [loginrec.c] Need stat.h
- (djm) [openbsd-compat/sha2.h] Avoid include macro clash with
system sha2.h
- (djm) [ssh-rand-helper.c] Needs a bunch of headers
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@ -4155,4 +4156,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.4214 2006/03/15 03:02:01 djm Exp $
$Id: ChangeLog,v 1.4215 2006/03/15 03:02:36 djm Exp $

View File

@ -24,6 +24,17 @@
#include "includes.h"
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/wait.h>
#ifdef HAVE_SYS_UN_H
# include <sys/un.h>
#endif
#include <signal.h>
#include <openssl/rand.h>
#include <openssl/sha.h>
#include <openssl/crypto.h>
@ -39,7 +50,7 @@
#include "pathnames.h"
#include "log.h"
RCSID("$Id: ssh-rand-helper.c,v 1.26 2005/07/17 07:26:44 djm Exp $");
RCSID("$Id: ssh-rand-helper.c,v 1.27 2006/03/15 03:02:36 djm Exp $");
/* Number of bytes we write out */
#define OUTPUT_SEED_SIZE 48