summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-24 13:53:19 +1000
committerDamien Miller <djm@mindrot.org>2006-07-24 13:53:19 +1000
commit2d00e63cb889a3b23b6d443ecb0921e34fb0a934 (patch)
treeee9252e5df2dc555ca9ce1426cf2140c5b103e6f
parent939878b95f6448e9933976f920a42f09e7f70fab (diff)
- stevesk@cvs.openbsd.org 2006/07/12 22:42:32
[includes.h ssh.c ssh-rand-helper.c] move #include <stddef.h> out of includes.h
-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 ad47d199..b4dbb2b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
[auth-options.c canohost.c channels.c includes.h readconf.c]
[servconf.c ssh-keyscan.c ssh.c sshconnect.c sshd.c]
move #include <netdb.h> out of includes.h; ok djm@
+ - stevesk@cvs.openbsd.org 2006/07/12 22:42:32
+ [includes.h ssh.c ssh-rand-helper.c]
+ move #include <stddef.h> out of includes.h
20060713
- (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
@@ -4927,4 +4930,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4410 2006/07/24 03:52:06 djm Exp $
+$Id: ChangeLog,v 1.4411 2006/07/24 03:53:19 djm Exp $
diff --git a/includes.h b/includes.h
index 7a3396c1..fbd22e9a 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: includes.h,v 1.50 2006/07/12 22:28:51 stevesk Exp $ */
+/* $OpenBSD: includes.h,v 1.51 2006/07/12 22:42:32 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -24,7 +24,6 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
-#include <stddef.h>
#ifdef HAVE_LIMITS_H
# include <limits.h> /* For PATH_MAX */
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c
index 3a290366..fb6fc281 100644
--- a/ssh-rand-helper.c
+++ b/ssh-rand-helper.c
@@ -29,6 +29,7 @@
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/socket.h>
+#include <stddef.h>
#include <netinet/in.h>
diff --git a/ssh.c b/ssh.c
index 701c4054..461b3981 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.286 2006/07/12 22:28:52 stevesk Exp $ */
+/* $OpenBSD: ssh.c,v 1.287 2006/07/12 22:42:32 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -62,6 +62,7 @@
#endif
#include <pwd.h>
#include <signal.h>
+#include <stddef.h>
#include <openssl/evp.h>
#include <openssl/err.h>