diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | entropy.c | 3 | ||||
-rw-r--r-- | scard-opensc.c | 1 | ||||
-rw-r--r-- | ssh-rand-helper.c | 1 |
4 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20070313 | ||
2 | - (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include | ||
3 | string.h to prevent warnings, from vapier at gentoo.org. | ||
4 | |||
1 | 20070306 | 5 | 20070306 |
2 | - (djm) OpenBSD CVS Sync | 6 | - (djm) OpenBSD CVS Sync |
3 | - jmc@cvs.openbsd.org 2007/03/01 16:19:33 | 7 | - jmc@cvs.openbsd.org 2007/03/01 16:19:33 |
@@ -2816,4 +2820,4 @@ | |||
2816 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 2820 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
2817 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 2821 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
2818 | 2822 | ||
2819 | $Id: ChangeLog,v 1.4636 2007/03/08 09:13:39 djm Exp $ | 2823 | $Id: ChangeLog,v 1.4637 2007/03/12 20:35:38 dtucker Exp $ |
@@ -35,8 +35,9 @@ | |||
35 | # include <fcntl.h> | 35 | # include <fcntl.h> |
36 | #endif | 36 | #endif |
37 | #include <stdarg.h> | 37 | #include <stdarg.h> |
38 | #include <unistd.h> | 38 | #include <string.h> |
39 | #include <signal.h> | 39 | #include <signal.h> |
40 | #include <unistd.h> | ||
40 | 41 | ||
41 | #include <openssl/rand.h> | 42 | #include <openssl/rand.h> |
42 | #include <openssl/crypto.h> | 43 | #include <openssl/crypto.h> |
diff --git a/scard-opensc.c b/scard-opensc.c index 4751ea295..36dae05fd 100644 --- a/scard-opensc.c +++ b/scard-opensc.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <openssl/x509.h> | 32 | #include <openssl/x509.h> |
33 | 33 | ||
34 | #include <stdarg.h> | 34 | #include <stdarg.h> |
35 | #include <string.h> | ||
35 | 36 | ||
36 | #include <opensc/opensc.h> | 37 | #include <opensc/opensc.h> |
37 | #include <opensc/pkcs15.h> | 38 | #include <opensc/pkcs15.h> |
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c index 8520c3a62..8b1c4b4f4 100644 --- a/ssh-rand-helper.c +++ b/ssh-rand-helper.c | |||
@@ -32,6 +32,7 @@ | |||
32 | 32 | ||
33 | #include <stdarg.h> | 33 | #include <stdarg.h> |
34 | #include <stddef.h> | 34 | #include <stddef.h> |
35 | #include <string.h> | ||
35 | 36 | ||
36 | #include <netinet/in.h> | 37 | #include <netinet/in.h> |
37 | #include <arpa/inet.h> | 38 | #include <arpa/inet.h> |