From 9794d0089c075188de1c7a752a61e7efc9e227bc Mon Sep 17 00:00:00 2001 From: djm Date: Mon, 10 Jul 2006 10:35:38 +0000 Subject: [PATCH] - stevesk@cvs.openbsd.org 2006/07/05 02:42:09 [canohost.c hostfile.c includes.h misc.c packet.c readconf.c] [serverloop.c sshconnect.c uuencode.c] move #include out of includes.h; ok deraadt@ (also ssh-rand-helper.c logintest.c loginrec.c) --- ChangeLog | 5 +++++ canohost.c | 6 +++++- hostfile.c | 6 +++++- includes.h | 3 +-- loginrec.c | 3 +++ logintest.c | 4 ++++ misc.c | 6 +++++- packet.c | 6 +++++- readconf.c | 5 ++++- serverloop.c | 5 ++++- ssh-rand-helper.c | 3 +++ sshconnect.c | 5 ++++- uuencode.c | 6 +++++- 13 files changed, 53 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9366d742..1dde0023 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,6 +30,11 @@ [channels.c includes.h] move #include out of includes.h; old ok djm@ (portable needed session.c too) + - stevesk@cvs.openbsd.org 2006/07/05 02:42:09 + [canohost.c hostfile.c includes.h misc.c packet.c readconf.c] + [serverloop.c sshconnect.c uuencode.c] + move #include out of includes.h; ok deraadt@ + (also ssh-rand-helper.c logintest.c loginrec.c) 20060706 - (dtucker) [configure.ac] Try AIX blibpath test in different order when diff --git a/canohost.c b/canohost.c index 34b751a7..787d338d 100644 --- a/canohost.c +++ b/canohost.c @@ -1,4 +1,4 @@ -/* $OpenBSD: canohost.c,v 1.53 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: canohost.c,v 1.54 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -14,6 +14,10 @@ #include "includes.h" +#include + +#include + #include #include "packet.h" diff --git a/hostfile.c b/hostfile.c index 39ff197a..a6714b6e 100644 --- a/hostfile.c +++ b/hostfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hostfile.c,v 1.40 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: hostfile.c,v 1.41 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -38,6 +38,10 @@ #include "includes.h" +#include + +#include + #include #include diff --git a/includes.h b/includes.h index c3f0671e..51b6a0b8 100644 --- a/includes.h +++ b/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.43 2006/07/03 17:59:32 stevesk Exp $ */ +/* $OpenBSD: includes.h,v 1.44 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -129,7 +129,6 @@ #include /* for grantpt() and friends */ #endif -#include #include /* For typedefs */ #if defined(HAVE_NETDB_H) # include diff --git a/loginrec.c b/loginrec.c index c2498e1e..76ddc200 100644 --- a/loginrec.c +++ b/loginrec.c @@ -149,6 +149,9 @@ #include #include +#include + +#include #include "ssh.h" #include "xmalloc.h" diff --git a/logintest.c b/logintest.c index 1159274f..7e9fbbfb 100644 --- a/logintest.c +++ b/logintest.c @@ -31,6 +31,10 @@ #include #include +#include + +#include + #include #include #include diff --git a/misc.c b/misc.c index 158d4878..63c7ddf1 100644 --- a/misc.c +++ b/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.52 2006/03/30 09:58:15 djm Exp $ */ +/* $OpenBSD: misc.c,v 1.53 2006/07/05 02:42:09 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2005,2006 Damien Miller. All rights reserved. @@ -27,7 +27,11 @@ #include "includes.h" #include +#include + +#include #include + #ifdef HAVE_PATHS_H # include #endif diff --git a/packet.c b/packet.c index bc0baf3f..ba284378 100644 --- a/packet.c +++ b/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.131 2006/03/30 09:58:16 djm Exp $ */ +/* $OpenBSD: packet.c,v 1.132 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -40,6 +40,10 @@ #include "includes.h" #include "openbsd-compat/sys-queue.h" +#include + +#include +#include #include #include "xmalloc.h" diff --git a/readconf.c b/readconf.c index 87e41e0c..df5e566a 100644 --- a/readconf.c +++ b/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.151 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: readconf.c,v 1.152 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -16,6 +16,9 @@ #include #include +#include + +#include #include diff --git a/serverloop.c b/serverloop.c index 18f1a10b..a0832679 100644 --- a/serverloop.c +++ b/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.135 2006/03/25 18:30:55 deraadt Exp $ */ +/* $OpenBSD: serverloop.c,v 1.136 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -39,6 +39,9 @@ #include #include +#include + +#include #include #include diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c index 605de72f..d8da7d3c 100644 --- a/ssh-rand-helper.c +++ b/ssh-rand-helper.c @@ -28,6 +28,9 @@ #include #include #include +#include + +#include #ifdef HAVE_SYS_UN_H # include diff --git a/sshconnect.c b/sshconnect.c index 776460f4..7f9c09b9 100644 --- a/sshconnect.c +++ b/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.186 2006/07/03 08:54:20 stevesk Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.187 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -18,6 +18,9 @@ #include #include #include +#include + +#include #include #ifdef HAVE_PATHS_H diff --git a/uuencode.c b/uuencode.c index 398aeefe..b8dcaeae 100644 --- a/uuencode.c +++ b/uuencode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uuencode.c,v 1.21 2006/03/26 01:31:48 deraadt Exp $ */ +/* $OpenBSD: uuencode.c,v 1.22 2006/07/05 02:42:09 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -25,6 +25,10 @@ #include "includes.h" +#include + +#include + #include "xmalloc.h" #include "uuencode.h" -- 2.45.1