From bd7c69eaa251af6b0a2c8218fa5b690c7c4e897d Mon Sep 17 00:00:00 2001 From: djm Date: Wed, 15 Mar 2006 00:28:34 +0000 Subject: [PATCH] - stevesk@cvs.openbsd.org 2006/02/10 00:27:13 [channels.c clientloop.c includes.h misc.c progressmeter.c sftp.c] [ssh.c sshd.c sshpty.c] move #include out of includes.h; ok markus@ --- ChangeLog | 4 ++++ channels.c | 4 +++- clientloop.c | 4 +++- includes.h | 3 +-- misc.c | 5 +++-- progressmeter.c | 4 +++- sftp.c | 3 ++- ssh.c | 3 ++- sshd.c | 4 +++- sshpty.c | 4 +++- 10 files changed, 27 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 435e0746..32b5ebc9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -58,6 +58,10 @@ [sshd.8] - move some text into a CAVEATS section - merge the COMMAND EXECUTION... section into AUTHENTICATION + - stevesk@cvs.openbsd.org 2006/02/10 00:27:13 + [channels.c clientloop.c includes.h misc.c progressmeter.c sftp.c] + [ssh.c sshd.c sshpty.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 78d4d918..3955b615 100644 --- a/channels.c +++ b/channels.c @@ -39,7 +39,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.233 2006/02/07 01:42:00 stevesk Exp $"); +RCSID("$OpenBSD: channels.c,v 1.234 2006/02/10 00:27:13 stevesk Exp $"); + +#include #include diff --git a/clientloop.c b/clientloop.c index 893ba30f..52f3bd5b 100644 --- a/clientloop.c +++ b/clientloop.c @@ -59,7 +59,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.151 2006/02/08 12:15:27 stevesk Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.152 2006/02/10 00:27:13 stevesk Exp $"); + +#include #include #include diff --git a/includes.h b/includes.h index b4cd092b..9cf7d30a 100644 --- a/includes.h +++ b/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.31 2006/02/09 00:32:07 stevesk Exp $ */ +/* $OpenBSD: includes.h,v 1.32 2006/02/10 00:27:13 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -92,7 +92,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg } #include #include -#include #include #ifdef HAVE_SYS_TIME_H # include /* For timersub */ diff --git a/misc.c b/misc.c index e4a47e61..e1da651e 100644 --- a/misc.c +++ b/misc.c @@ -24,8 +24,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: misc.c,v 1.44 2006/02/08 12:32:49 stevesk Exp $"); - +RCSID("$OpenBSD: misc.c,v 1.45 2006/02/10 00:27:13 stevesk Exp $"); + +#include #include #ifdef HAVE_PATHS_H # include diff --git a/progressmeter.c b/progressmeter.c index 13c51d87..4f76c53d 100644 --- a/progressmeter.c +++ b/progressmeter.c @@ -23,7 +23,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: progressmeter.c,v 1.24 2005/06/07 13:25:23 jaredy Exp $"); +RCSID("$OpenBSD: progressmeter.c,v 1.25 2006/02/10 00:27:13 stevesk Exp $"); + +#include #include "progressmeter.h" #include "atomicio.h" diff --git a/sftp.c b/sftp.c index 636c1f5f..0599e587 100644 --- a/sftp.c +++ b/sftp.c @@ -15,8 +15,9 @@ */ #include "includes.h" +RCSID("$OpenBSD: sftp.c,v 1.72 2006/02/10 00:27:13 stevesk Exp $"); -RCSID("$OpenBSD: sftp.c,v 1.71 2006/02/08 12:15:27 stevesk Exp $"); +#include #ifdef HAVE_PATHS_H # include diff --git a/ssh.c b/ssh.c index 3384de01..5331402e 100644 --- a/ssh.c +++ b/ssh.c @@ -40,9 +40,10 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.259 2006/02/08 14:31:30 stevesk Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.260 2006/02/10 00:27:13 stevesk Exp $"); #include +#include #include diff --git a/sshd.c b/sshd.c index 10f9f52a..3bf48972 100644 --- a/sshd.c +++ b/sshd.c @@ -42,7 +42,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.319 2006/02/08 12:15:27 stevesk Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.320 2006/02/10 00:27:13 stevesk Exp $"); + +#include #include diff --git a/sshpty.c b/sshpty.c index 4434a908..884df26a 100644 --- a/sshpty.c +++ b/sshpty.c @@ -12,7 +12,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshpty.c,v 1.14 2006/02/08 12:15:27 stevesk Exp $"); +RCSID("$OpenBSD: sshpty.c,v 1.15 2006/02/10 00:27:13 stevesk Exp $"); + +#include #ifdef HAVE_PATHS_H # include -- 2.45.1