summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:11:28 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:11:28 +1100
commit99bd21e3fe8f8312cb71c1ebf23c34a82a861429 (patch)
tree998eb58d19d512ff72278df354af214248b95f7c
parent2eb6340ddd2d1326cb3fd708be21b1bce7355e49 (diff)
- 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 <termios.h> out of includes.h; ok markus@
-rw-r--r--ChangeLog6
-rw-r--r--channels.c4
-rw-r--r--clientloop.c4
-rw-r--r--clientloop.h4
-rw-r--r--includes.h3
-rw-r--r--packet.h4
-rw-r--r--serverloop.c4
-rw-r--r--sshpty.c4
-rw-r--r--sshpty.h4
-rw-r--r--sshtty.c4
-rw-r--r--ttymodes.c4
11 files changed, 33 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e942999..3ad3feb4 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 <sys/queue.h> 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 <termios.h> out of includes.h; ok markus@
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -3914,4 +3918,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.4143 2006/03/15 00:09:42 djm Exp $
+$Id: ChangeLog,v 1.4144 2006/03/15 00:11:28 djm Exp $
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 <termios.h>
#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 <termios.h>
#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 <ylo@cs.hut.fi>
@@ -35,6 +35,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <termios.h>
+
/* 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 <ylo@cs.hut.fi>
@@ -67,7 +67,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
# include <libc.h>
#endif
#include <unistd.h> /* For STDIN_FILENO, etc */
-#include <termios.h> /* 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 <ylo@cs.hut.fi>
@@ -16,6 +16,8 @@
#ifndef PACKET_H
#define PACKET_H
+#include <termios.h>
+
#include <openssl/bn.h>
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 <termios.h>
#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 <termios.h>
#ifdef HAVE_UTIL_H
# include <util.h>
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 <ylo@cs.hut.fi>
@@ -17,6 +17,8 @@
#ifndef SSHPTY_H
#define SSHPTY_H
+#include <termios.h>
+
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 <termios.h>
#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 <termios.h>
#include "packet.h"
#include "log.h"