summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--includes.h3
-rw-r--r--ssh-rand-helper.c1
-rw-r--r--ssh.c3
4 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ad47d1996..b4dbb2b28 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
9 [auth-options.c canohost.c channels.c includes.h readconf.c] 9 [auth-options.c canohost.c channels.c includes.h readconf.c]
10 [servconf.c ssh-keyscan.c ssh.c sshconnect.c sshd.c] 10 [servconf.c ssh-keyscan.c ssh.c sshconnect.c sshd.c]
11 move #include <netdb.h> out of includes.h; ok djm@ 11 move #include <netdb.h> out of includes.h; ok djm@
12 - stevesk@cvs.openbsd.org 2006/07/12 22:42:32
13 [includes.h ssh.c ssh-rand-helper.c]
14 move #include <stddef.h> out of includes.h
12 15
1320060713 1620060713
14 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h 17 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
@@ -4927,4 +4930,4 @@
4927 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4930 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4928 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4931 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4929 4932
4930$Id: ChangeLog,v 1.4410 2006/07/24 03:52:06 djm Exp $ 4933$Id: ChangeLog,v 1.4411 2006/07/24 03:53:19 djm Exp $
diff --git a/includes.h b/includes.h
index 7a3396c16..fbd22e9a1 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: includes.h,v 1.50 2006/07/12 22:28:51 stevesk Exp $ */ 1/* $OpenBSD: includes.h,v 1.51 2006/07/12 22:42:32 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -24,7 +24,6 @@
24#include <stdlib.h> 24#include <stdlib.h>
25#include <string.h> 25#include <string.h>
26#include <time.h> 26#include <time.h>
27#include <stddef.h>
28 27
29#ifdef HAVE_LIMITS_H 28#ifdef HAVE_LIMITS_H
30# include <limits.h> /* For PATH_MAX */ 29# include <limits.h> /* For PATH_MAX */
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c
index 3a2903669..fb6fc2814 100644
--- a/ssh-rand-helper.c
+++ b/ssh-rand-helper.c
@@ -29,6 +29,7 @@
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#include <stddef.h>
32 33
33#include <netinet/in.h> 34#include <netinet/in.h>
34 35
diff --git a/ssh.c b/ssh.c
index 701c40543..461b39817 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.286 2006/07/12 22:28:52 stevesk Exp $ */ 1/* $OpenBSD: ssh.c,v 1.287 2006/07/12 22:42:32 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -62,6 +62,7 @@
62#endif 62#endif
63#include <pwd.h> 63#include <pwd.h>
64#include <signal.h> 64#include <signal.h>
65#include <stddef.h>
65 66
66#include <openssl/evp.h> 67#include <openssl/evp.h>
67#include <openssl/err.h> 68#include <openssl/err.h>