summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:28:34 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:28:34 +1100
commit17e91c0fb01787f9a5974a997bb26114a435dde7 (patch)
treed4b1264eaf80ff34ee75517656a2428e1a3a7c18
parentc47d7e9e1905adbef3489cc2bbdceda02d212f7e (diff)
- 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 <sys/ioctl.h> out of includes.h; ok markus@
-rw-r--r--ChangeLog6
-rw-r--r--channels.c4
-rw-r--r--clientloop.c4
-rw-r--r--includes.h3
-rw-r--r--misc.c5
-rw-r--r--progressmeter.c4
-rw-r--r--sftp.c3
-rw-r--r--ssh.c3
-rw-r--r--sshd.c4
-rw-r--r--sshpty.c4
10 files changed, 28 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 10bf3c86..1582d97c 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 <sys/ioctl.h> out of includes.h; ok markus@
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -3959,4 +3963,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4156 2006/03/15 00:27:20 djm Exp $
+$Id: ChangeLog,v 1.4157 2006/03/15 00:28:34 djm Exp $
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 <sys/ioctl.h>
#include <termios.h>
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 <sys/ioctl.h>
#include <paths.h>
#include <termios.h>
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 <ylo@cs.hut.fi>
@@ -92,7 +92,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
#include <sys/types.h>
#include <sys/socket.h>
-#include <sys/ioctl.h>
#include <sys/wait.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h> /* 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 <sys/ioctl.h>
#include <netinet/tcp.h>
#ifdef HAVE_PATHS_H
# include <paths.h>
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 <sys/ioctl.h>
#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 <sys/ioctl.h>
#ifdef HAVE_PATHS_H
# include <paths.h>
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 <sys/resource.h>
+#include <sys/ioctl.h>
#include <paths.h>
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 <sys/ioctl.h>
#include <paths.h>
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 <sys/ioctl.h>
#ifdef HAVE_PATHS_H
# include <paths.h>