From 1d3e026fad78788b06c59bf93171fa04ba666424 Mon Sep 17 00:00:00 2001 From: djm Date: Wed, 15 Mar 2006 00:11:28 +0000 Subject: [PATCH] - stevesk@cvs.openbsd.org 2006/02/07 01:42:00 [channels.c clientloop.c clientloop.h includes.h packet.h] [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c] move #include out of includes.h; ok markus@ --- ChangeLog | 4 ++++ channels.c | 4 +++- clientloop.c | 4 +++- clientloop.h | 4 +++- includes.h | 3 +-- packet.h | 4 +++- serverloop.c | 4 +++- sshpty.c | 4 +++- sshpty.h | 4 +++- sshtty.c | 4 +++- ttymodes.c | 4 +++- 11 files changed, 32 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5110605b..ab990c09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,10 @@ - stevesk@cvs.openbsd.org 2006/02/07 01:18:09 [includes.h ssh-agent.c ssh-keyscan.c sshconnect2.c] move #include out of includes.h; ok markus@ + - stevesk@cvs.openbsd.org 2006/02/07 01:42:00 + [channels.c clientloop.c clientloop.h includes.h packet.h] + [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c] + move #include out of includes.h; ok markus@ 20060313 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) diff --git a/channels.c b/channels.c index 1252f344..78d4d918 100644 --- a/channels.c +++ b/channels.c @@ -39,7 +39,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.232 2006/01/30 12:22:22 reyk Exp $"); +RCSID("$OpenBSD: channels.c,v 1.233 2006/02/07 01:42:00 stevesk Exp $"); + +#include #include "ssh.h" #include "ssh1.h" diff --git a/clientloop.c b/clientloop.c index b76f7cfe..c43a50b2 100644 --- a/clientloop.c +++ b/clientloop.c @@ -59,7 +59,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.149 2005/12/30 15:56:37 reyk Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.150 2006/02/07 01:42:00 stevesk Exp $"); + +#include #include "ssh.h" #include "ssh1.h" diff --git a/clientloop.h b/clientloop.h index aed2d918..64cd956d 100644 --- a/clientloop.h +++ b/clientloop.h @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.h,v 1.14 2005/07/04 00:58:43 djm Exp $ */ +/* $OpenBSD: clientloop.h,v 1.15 2006/02/07 01:42:00 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -35,6 +35,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include + /* Client side main loop for the interactive session. */ int client_loop(int, int, int); void client_x11_get_proto(const char *, const char *, u_int, diff --git a/includes.h b/includes.h index b734f7d1..db2f2f5a 100644 --- a/includes.h +++ b/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.24 2006/02/07 01:18:09 stevesk Exp $ */ +/* $OpenBSD: includes.h,v 1.25 2006/02/07 01:42:00 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -67,7 +67,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg } # include #endif #include /* For STDIN_FILENO, etc */ -#include /* Struct winsize */ /* *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively diff --git a/packet.h b/packet.h index 8c23646a..04123046 100644 --- a/packet.h +++ b/packet.h @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.h,v 1.43 2005/07/25 11:59:40 markus Exp $ */ +/* $OpenBSD: packet.h,v 1.44 2006/02/07 01:42:00 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -16,6 +16,8 @@ #ifndef PACKET_H #define PACKET_H +#include + #include void packet_set_connection(int, int); diff --git a/serverloop.c b/serverloop.c index 3d8e7cfb..23f8831e 100644 --- a/serverloop.c +++ b/serverloop.c @@ -35,7 +35,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.124 2005/12/13 15:03:02 reyk Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.125 2006/02/07 01:42:00 stevesk Exp $"); + +#include #include "xmalloc.h" #include "packet.h" diff --git a/sshpty.c b/sshpty.c index 36788c4d..8ce8ee46 100644 --- a/sshpty.c +++ b/sshpty.c @@ -12,7 +12,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshpty.c,v 1.12 2004/06/21 17:36:31 avsm Exp $"); +RCSID("$OpenBSD: sshpty.c,v 1.13 2006/02/07 01:42:00 stevesk Exp $"); + +#include #ifdef HAVE_UTIL_H # include diff --git a/sshpty.h b/sshpty.h index c0678de2..a7de7370 100644 --- a/sshpty.h +++ b/sshpty.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sshpty.h,v 1.5 2004/05/08 00:01:37 deraadt Exp $ */ +/* $OpenBSD: sshpty.h,v 1.6 2006/02/07 01:42:00 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -17,6 +17,8 @@ #ifndef SSHPTY_H #define SSHPTY_H +#include + struct termios get_saved_tio(void); void leave_raw_mode(void); void enter_raw_mode(void); diff --git a/sshtty.c b/sshtty.c index 0b17c3e2..dcaba183 100644 --- a/sshtty.c +++ b/sshtty.c @@ -35,7 +35,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshtty.c,v 1.6 2004/05/08 00:01:37 deraadt Exp $"); +RCSID("$OpenBSD: sshtty.c,v 1.7 2006/02/07 01:42:00 stevesk Exp $"); + +#include #include "sshpty.h" #include "log.h" diff --git a/ttymodes.c b/ttymodes.c index cf4c7d5c..7f621e30 100644 --- a/ttymodes.c +++ b/ttymodes.c @@ -43,7 +43,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: ttymodes.c,v 1.19 2003/04/08 20:21:29 itojun Exp $"); +RCSID("$OpenBSD: ttymodes.c,v 1.20 2006/02/07 01:42:00 stevesk Exp $"); + +#include #include "packet.h" #include "log.h" -- 2.45.2