diff options
author | Darren Tucker <dtucker@zip.com.au> | 2007-03-12 21:35:38 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2007-03-12 21:35:38 +0100 |
commit | a8d51ee3078c46918b88164330262555704ff869 (patch) | |
tree | 516c03e8116423715de18a869d60eb4f8de20a4c /entropy.c | |
parent | - (djm) [README] correct link to release notes (diff) | |
download | openssh-a8d51ee3078c46918b88164330262555704ff869.tar.xz openssh-a8d51ee3078c46918b88164330262555704ff869.zip |
- (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include
string.h to prevent warnings, from vapier at gentoo.org.
Diffstat (limited to 'entropy.c')
-rw-r--r-- | entropy.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,8 +35,9 @@ # include <fcntl.h> #endif #include <stdarg.h> -#include <unistd.h> +#include <string.h> #include <signal.h> +#include <unistd.h> #include <openssl/rand.h> #include <openssl/crypto.h> |