summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ssh-keyscan.c1
-rw-r--r--ssh-rand-helper.c1
3 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 72c56bebc..72ae6946a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -59,6 +59,7 @@
59 openbsd-compat/glob.c openbsd-compat/mktemp.c openbsd-compat/port-tun.c 59 openbsd-compat/glob.c openbsd-compat/mktemp.c openbsd-compat/port-tun.c
60 openbsd-compat/readpassphrase.c openbsd-compat/strtonum.c] Include <errno.h>. 60 openbsd-compat/readpassphrase.c openbsd-compat/strtonum.c] Include <errno.h>.
61 - (dtucker) [openbsd-compat/setproctitle.c] Include stdarg.h. 61 - (dtucker) [openbsd-compat/setproctitle.c] Include stdarg.h.
62 - (dtucker) [ssh-keyscan.c ssh-rand-helper.c] More errno.h here too.
62 63
6320060711 6420060711
64 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c 65 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@@ -4908,4 +4909,4 @@
4908 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4909 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4909 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4910 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4910 4911
4911$Id: ChangeLog,v 1.4403 2006/07/12 12:43:28 dtucker Exp $ 4912$Id: ChangeLog,v 1.4404 2006/07/12 12:44:34 dtucker Exp $
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 76c2ed13c..a612dd1b9 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -11,6 +11,7 @@
11 11
12#include "openbsd-compat/sys-queue.h" 12#include "openbsd-compat/sys-queue.h"
13#include <sys/resource.h> 13#include <sys/resource.h>
14#include <errno.h>
14#include <stdarg.h> 15#include <stdarg.h>
15 16
16#include <openssl/bn.h> 17#include <openssl/bn.h>
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c
index ebee90014..3a2903669 100644
--- a/ssh-rand-helper.c
+++ b/ssh-rand-helper.c
@@ -36,6 +36,7 @@
36# include <sys/un.h> 36# include <sys/un.h>
37#endif 37#endif
38 38
39#include <errno.h>
39#include <fcntl.h> 40#include <fcntl.h>
40#include <pwd.h> 41#include <pwd.h>
41#include <signal.h> 42#include <signal.h>