diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-08-05 15:57:40 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-08-05 15:57:40 +1000 |
commit | 4c65543c89f89b25b44ff509bfc49f6e940a128e (patch) | |
tree | 053eef5991eca4d2e41fd66bda0f6582bac8e64c | |
parent | ecf28ba7aaf85952b46caf2d1d1a3700a9f80807 (diff) |
- (dtucker) [ssh-rand-helper.c] Needs stdarg.h for log.h.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ssh-rand-helper.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -101,6 +101,7 @@ | |||
101 | - (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of | 101 | - (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of |
102 | #include stdarg.h, needed for log.h. | 102 | #include stdarg.h, needed for log.h. |
103 | - (dtucker) [entropy.c] Needs unistd.h too. | 103 | - (dtucker) [entropy.c] Needs unistd.h too. |
104 | - (dtucker) [ssh-rand-helper.c] Needs stdarg.h for log.h. | ||
104 | 105 | ||
105 | 20060804 | 106 | 20060804 |
106 | - (dtucker) [configure.ac] The "crippled AES" test does not work on recent | 107 | - (dtucker) [configure.ac] The "crippled AES" test does not work on recent |
@@ -5171,4 +5172,4 @@ | |||
5171 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5172 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5172 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5173 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5173 | 5174 | ||
5174 | $Id: ChangeLog,v 1.4462 2006/08/05 05:50:20 dtucker Exp $ | 5175 | $Id: ChangeLog,v 1.4463 2006/08/05 05:57:40 dtucker Exp $ |
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c index 121fa52fa..10c9905b1 100644 --- a/ssh-rand-helper.c +++ b/ssh-rand-helper.c | |||
@@ -29,6 +29,8 @@ | |||
29 | #include <sys/stat.h> | 29 | #include <sys/stat.h> |
30 | #include <sys/wait.h> | 30 | #include <sys/wait.h> |
31 | #include <sys/socket.h> | 31 | #include <sys/socket.h> |
32 | |||
33 | #include <stdarg.h> | ||
32 | #include <stddef.h> | 34 | #include <stddef.h> |
33 | 35 | ||
34 | #include <netinet/in.h> | 36 | #include <netinet/in.h> |