View | Details | Raw Unified | Return to bug 1294
Collapse All | Expand All

(-)ChangeLog (+4 lines)
Lines 1-3 Link Here
1
20070312
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
(-)entropy.c (-1 / +2 lines)
Lines 35-42 Link Here
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>
(-)scard-opensc.c (+1 lines)
Lines 32-37 Link Here
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>
(-)ssh-rand-helper.c (+1 lines)
Lines 32-37 Link Here
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>

Return to bug 1294