From b0f6943a5dc83eaaaba15ebce897e162c1624033 Mon Sep 17 00:00:00 2001 From: djm Date: Mon, 24 Jul 2006 04:09:40 +0000 Subject: [PATCH] - stevesk@cvs.openbsd.org 2006/07/22 19:08:54 [includes.h moduli.c progressmeter.c scp.c sftp-common.c] [sftp-server.c ssh-agent.c sshlogin.c] move #include out of includes.h --- ChangeLog | 4 ++++ includes.h | 3 +-- moduli.c | 11 ++++++++--- progressmeter.c | 3 ++- scp.c | 3 ++- sftp-common.c | 3 ++- sftp-server.c | 3 ++- ssh-agent.c | 3 ++- sshlogin.c | 3 ++- 9 files changed, 25 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6dc03052..2bbee0e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -76,6 +76,10 @@ - stevesk@cvs.openbsd.org 2006/07/21 21:26:55 [progressmeter.c] ARGSUSED for signal handler + - stevesk@cvs.openbsd.org 2006/07/22 19:08:54 + [includes.h moduli.c progressmeter.c scp.c sftp-common.c] + [sftp-server.c ssh-agent.c sshlogin.c] + move #include out of includes.h 20060713 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h diff --git a/includes.h b/includes.h index da89decd..da526bc7 100644 --- a/includes.h +++ b/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.52 2006/07/17 01:31:09 stevesk Exp $ */ +/* $OpenBSD: includes.h,v 1.53 2006/07/22 19:08:54 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -23,7 +23,6 @@ #include #include #include -#include #ifdef HAVE_LIMITS_H # include /* For PATH_MAX */ diff --git a/moduli.c b/moduli.c index f6f15a2a..9d4aedd5 100644 --- a/moduli.c +++ b/moduli.c @@ -1,4 +1,4 @@ -/* $OpenBSD: moduli.c,v 1.13 2006/03/25 00:05:41 djm Exp $ */ +/* $OpenBSD: moduli.c,v 1.14 2006/07/22 19:08:54 stevesk Exp $ */ /* * Copyright 1994 Phil Karn * Copyright 1996-1998, 2003 William Allen Simpson @@ -38,11 +38,16 @@ */ #include "includes.h" -#include "xmalloc.h" -#include "log.h" + +#include #include +#include + +#include "xmalloc.h" +#include "log.h" + /* * File output defines */ diff --git a/progressmeter.c b/progressmeter.c index c8c3f1b3..c70e9939 100644 --- a/progressmeter.c +++ b/progressmeter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: progressmeter.c,v 1.32 2006/07/21 21:26:55 stevesk Exp $ */ +/* $OpenBSD: progressmeter.c,v 1.33 2006/07/22 19:08:54 stevesk Exp $ */ /* * Copyright (c) 2003 Nils Nordman. All rights reserved. * @@ -30,6 +30,7 @@ #include #include +#include #include #include "progressmeter.h" diff --git a/scp.c b/scp.c index 03f815fb..72c4ee43 100644 --- a/scp.c +++ b/scp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scp.c,v 1.148 2006/07/17 01:31:09 stevesk Exp $ */ +/* $OpenBSD: scp.c,v 1.149 2006/07/22 19:08:54 stevesk Exp $ */ /* * scp - secure remote copy. This is basically patched BSD rcp which * uses ssh to do the data transfer (instead of using rcmd). @@ -86,6 +86,7 @@ #include #include #include +#include #include #include "xmalloc.h" diff --git a/sftp-common.c b/sftp-common.c index 92ce9066..6fd0d76b 100644 --- a/sftp-common.c +++ b/sftp-common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-common.c,v 1.15 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: sftp-common.c,v 1.16 2006/07/22 19:08:54 stevesk Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -31,6 +31,7 @@ #include #include +#include #include "buffer.h" #include "bufaux.h" diff --git a/sftp-server.c b/sftp-server.c index 923cc8c1..3c254e33 100644 --- a/sftp-server.c +++ b/sftp-server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-server.c,v 1.63 2006/07/17 01:31:09 stevesk Exp $ */ +/* $OpenBSD: sftp-server.c,v 1.64 2006/07/22 19:08:54 stevesk Exp $ */ /* * Copyright (c) 2000-2004 Markus Friedl. All rights reserved. * @@ -24,6 +24,7 @@ #include #include #include +#include #include "buffer.h" #include "bufaux.h" diff --git a/ssh-agent.c b/ssh-agent.c index 621b0977..a0713b23 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.144 2006/07/17 01:31:10 stevesk Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.145 2006/07/22 19:08:54 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -51,6 +51,7 @@ # include #endif #include +#include #include #include diff --git a/sshlogin.c b/sshlogin.c index 33506931..ea313e80 100644 --- a/sshlogin.c +++ b/sshlogin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshlogin.c,v 1.20 2006/07/17 01:31:10 stevesk Exp $ */ +/* $OpenBSD: sshlogin.c,v 1.21 2006/07/22 19:08:54 stevesk Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -45,6 +45,7 @@ #include #include +#include #include #include "loginrec.h" -- 2.45.1