From b6438382f42e84e4446470009fc098dbbc2ffcf4 Mon Sep 17 00:00:00 2001 From: djm Date: Wed, 15 Mar 2006 00:53:45 +0000 Subject: [PATCH] - stevesk@cvs.openbsd.org 2006/02/22 00:04:45 [canohost.c clientloop.c includes.h match.c readconf.c scp.c ssh.c] [sshconnect.c] move #include out of includes.h; ok djm@ --- ChangeLog | 4 ++++ canohost.c | 4 +++- clientloop.c | 3 ++- includes.h | 3 +-- match.c | 4 +++- readconf.c | 4 +++- scp.c | 3 ++- ssh.c | 3 ++- sshconnect.c | 3 ++- 9 files changed, 22 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index c995c03b..b78b607c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -146,6 +146,10 @@ [sftp-server.c sftp.c ssh-add.c ssh-keygen.c ssh.c sshconnect.c] [sshconnect2.c sshd.c sshpty.c] move #include out of includes.h; ok markus@ + - stevesk@cvs.openbsd.org 2006/02/22 00:04:45 + [canohost.c clientloop.c includes.h match.c readconf.c scp.c ssh.c] + [sshconnect.c] + move #include out of includes.h; ok djm@ 20060313 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) diff --git a/canohost.c b/canohost.c index 6ca60e6b..76b0bee0 100644 --- a/canohost.c +++ b/canohost.c @@ -12,7 +12,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: canohost.c,v 1.48 2005/12/28 22:46:06 stevesk Exp $"); +RCSID("$OpenBSD: canohost.c,v 1.49 2006/02/22 00:04:44 stevesk Exp $"); + +#include #include "packet.h" #include "xmalloc.h" diff --git a/clientloop.c b/clientloop.c index af5351b7..dba3e96c 100644 --- a/clientloop.c +++ b/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.154 2006/02/20 17:19:54 stevesk Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.155 2006/02/22 00:04:44 stevesk Exp $"); #include #ifdef HAVE_SYS_STAT_H @@ -67,6 +67,7 @@ RCSID("$OpenBSD: clientloop.c,v 1.154 2006/02/20 17:19:54 stevesk Exp $"); #endif #include +#include #include #include #include diff --git a/includes.h b/includes.h index 564bb763..c3da49eb 100644 --- a/includes.h +++ b/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.35 2006/02/20 17:02:44 stevesk Exp $ */ +/* $OpenBSD: includes.h,v 1.37 2006/02/22 00:04:44 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -25,7 +25,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg } #include #include -#include #include #include /* For O_NONBLOCK */ #include diff --git a/match.c b/match.c index 29fb7dab..51407b81 100644 --- a/match.c +++ b/match.c @@ -35,7 +35,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: match.c,v 1.20 2005/06/17 02:44:32 djm Exp $"); +RCSID("$OpenBSD: match.c,v 1.21 2006/02/22 00:04:44 stevesk Exp $"); + +#include #include "match.h" #include "xmalloc.h" diff --git a/readconf.c b/readconf.c index da704d80..392fc52c 100644 --- a/readconf.c +++ b/readconf.c @@ -12,11 +12,13 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.147 2006/02/20 17:19:54 stevesk Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.148 2006/02/22 00:04:44 stevesk Exp $"); #include #include +#include + #include "ssh.h" #include "xmalloc.h" #include "compat.h" diff --git a/scp.c b/scp.c index 9d30ec52..af931764 100644 --- a/scp.c +++ b/scp.c @@ -71,7 +71,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: scp.c,v 1.134 2006/02/20 17:19:54 stevesk Exp $"); +RCSID("$OpenBSD: scp.c,v 1.135 2006/02/22 00:04:44 stevesk Exp $"); #include #ifdef HAVE_SYS_STAT_H @@ -79,6 +79,7 @@ RCSID("$OpenBSD: scp.c,v 1.134 2006/02/20 17:19:54 stevesk Exp $"); #endif #include +#include #include #include diff --git a/ssh.c b/ssh.c index 18631f27..e2e7ab32 100644 --- a/ssh.c +++ b/ssh.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.264 2006/02/20 17:19:54 stevesk Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.265 2006/02/22 00:04:45 stevesk Exp $"); #include #ifdef HAVE_SYS_STAT_H @@ -50,6 +50,7 @@ RCSID("$OpenBSD: ssh.c,v 1.264 2006/02/20 17:19:54 stevesk Exp $"); #include #include +#include #include #include diff --git a/sshconnect.c b/sshconnect.c index 519a7cf0..9d1c8593 100644 --- a/sshconnect.c +++ b/sshconnect.c @@ -13,12 +13,13 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect.c,v 1.175 2006/02/20 17:19:54 stevesk Exp $"); +RCSID("$OpenBSD: sshconnect.c,v 1.176 2006/02/22 00:04:45 stevesk Exp $"); #include #include #include +#include #include #include "ssh.h" -- 2.45.2