]> andersk Git - openssh.git/commitdiff
- (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include
authordtucker <dtucker>
Mon, 12 Mar 2007 20:35:38 +0000 (20:35 +0000)
committerdtucker <dtucker>
Mon, 12 Mar 2007 20:35:38 +0000 (20:35 +0000)
   string.h to prevent warnings, from vapier at gentoo.org.

ChangeLog
entropy.c
scard-opensc.c
ssh-rand-helper.c

index e746b83904c9fced6433eb4583e9bb1593aec058..eed347cc4459cc18ad92f2ab0b3b082c28a9d25d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20070313
+ - (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include
+   string.h to prevent warnings, from vapier at gentoo.org.
+
 20070306
  - (djm) OpenBSD CVS Sync
    - jmc@cvs.openbsd.org 2007/03/01 16:19:33
index ccabb136441a32566972b2f76abe4235c1cb881c..8b705397ff9a1870b743583b69913808fc92b3b9 100644 (file)
--- a/entropy.c
+++ b/entropy.c
@@ -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>
index 4751ea295ff2fb6a00e7c08fa459bb5fd4a91817..36dae05fd5a8c908b59fd02a7c5ab7fff451b22e 100644 (file)
@@ -32,6 +32,7 @@
 #include <openssl/x509.h>
 
 #include <stdarg.h>
+#include <string.h>
 
 #include <opensc/opensc.h>
 #include <opensc/pkcs15.h>
index 8520c3a62ee573396ddf36ee86bfb925a7f259f2..8b1c4b4f47bf034f52ce117dceaebd24daa3b361 100644 (file)
@@ -32,6 +32,7 @@
 
 #include <stdarg.h>
 #include <stddef.h>
+#include <string.h>
 
 #include <netinet/in.h>
 #include <arpa/inet.h>
This page took 0.054305 seconds and 5 git commands to generate.