summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 4e942999a..3ad3feb46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,10 @@
13 - stevesk@cvs.openbsd.org 2006/02/07 01:18:09 13 - stevesk@cvs.openbsd.org 2006/02/07 01:18:09
14 [includes.h ssh-agent.c ssh-keyscan.c sshconnect2.c] 14 [includes.h ssh-agent.c ssh-keyscan.c sshconnect2.c]
15 move #include <sys/queue.h> out of includes.h; ok markus@ 15 move #include <sys/queue.h> out of includes.h; ok markus@
16 - stevesk@cvs.openbsd.org 2006/02/07 01:42:00
17 [channels.c clientloop.c clientloop.h includes.h packet.h]
18 [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c]
19 move #include <termios.h> out of includes.h; ok markus@
16 20
1720060313 2120060313
18 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 22 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -3914,4 +3918,4 @@
3914 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3918 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3915 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3919 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3916 3920
3917$Id: ChangeLog,v 1.4143 2006/03/15 00:09:42 djm Exp $ 3921$Id: ChangeLog,v 1.4144 2006/03/15 00:11:28 djm Exp $
diff --git a/channels.c b/channels.c
index 1252f3446..78d4d9187 100644
--- a/channels.c
+++ b/channels.c
@@ -39,7 +39,9 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: channels.c,v 1.232 2006/01/30 12:22:22 reyk Exp $"); 42RCSID("$OpenBSD: channels.c,v 1.233 2006/02/07 01:42:00 stevesk Exp $");
43
44#include <termios.h>
43 45
44#include "ssh.h" 46#include "ssh.h"
45#include "ssh1.h" 47#include "ssh1.h"
diff --git a/clientloop.c b/clientloop.c
index b76f7cfe0..c43a50b25 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -59,7 +59,9 @@
59 */ 59 */
60 60
61#include "includes.h" 61#include "includes.h"
62RCSID("$OpenBSD: clientloop.c,v 1.149 2005/12/30 15:56:37 reyk Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.150 2006/02/07 01:42:00 stevesk Exp $");
63
64#include <termios.h>
63 65
64#include "ssh.h" 66#include "ssh.h"
65#include "ssh1.h" 67#include "ssh1.h"
diff --git a/clientloop.h b/clientloop.h
index aed2d918b..64cd956d2 100644
--- a/clientloop.h
+++ b/clientloop.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: clientloop.h,v 1.14 2005/07/04 00:58:43 djm Exp $ */ 1/* $OpenBSD: clientloop.h,v 1.15 2006/02/07 01:42:00 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -35,6 +35,8 @@
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */ 36 */
37 37
38#include <termios.h>
39
38/* Client side main loop for the interactive session. */ 40/* Client side main loop for the interactive session. */
39int client_loop(int, int, int); 41int client_loop(int, int, int);
40void client_x11_get_proto(const char *, const char *, u_int, 42void client_x11_get_proto(const char *, const char *, u_int,
diff --git a/includes.h b/includes.h
index b734f7d1b..db2f2f5a2 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: includes.h,v 1.24 2006/02/07 01:18:09 stevesk Exp $ */ 1/* $OpenBSD: includes.h,v 1.25 2006/02/07 01:42:00 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -67,7 +67,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
67# include <libc.h> 67# include <libc.h>
68#endif 68#endif
69#include <unistd.h> /* For STDIN_FILENO, etc */ 69#include <unistd.h> /* For STDIN_FILENO, etc */
70#include <termios.h> /* Struct winsize */
71 70
72/* 71/*
73 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively 72 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
diff --git a/packet.h b/packet.h
index 8c23646aa..04123046a 100644
--- a/packet.h
+++ b/packet.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.h,v 1.43 2005/07/25 11:59:40 markus Exp $ */ 1/* $OpenBSD: packet.h,v 1.44 2006/02/07 01:42:00 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -16,6 +16,8 @@
16#ifndef PACKET_H 16#ifndef PACKET_H
17#define PACKET_H 17#define PACKET_H
18 18
19#include <termios.h>
20
19#include <openssl/bn.h> 21#include <openssl/bn.h>
20 22
21void packet_set_connection(int, int); 23void packet_set_connection(int, int);
diff --git a/serverloop.c b/serverloop.c
index 3d8e7cfb5..23f8831ef 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -35,7 +35,9 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: serverloop.c,v 1.124 2005/12/13 15:03:02 reyk Exp $"); 38RCSID("$OpenBSD: serverloop.c,v 1.125 2006/02/07 01:42:00 stevesk Exp $");
39
40#include <termios.h>
39 41
40#include "xmalloc.h" 42#include "xmalloc.h"
41#include "packet.h" 43#include "packet.h"
diff --git a/sshpty.c b/sshpty.c
index 36788c4d7..8ce8ee469 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -12,7 +12,9 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: sshpty.c,v 1.12 2004/06/21 17:36:31 avsm Exp $"); 15RCSID("$OpenBSD: sshpty.c,v 1.13 2006/02/07 01:42:00 stevesk Exp $");
16
17#include <termios.h>
16 18
17#ifdef HAVE_UTIL_H 19#ifdef HAVE_UTIL_H
18# include <util.h> 20# include <util.h>
diff --git a/sshpty.h b/sshpty.h
index c0678de22..a7de73700 100644
--- a/sshpty.h
+++ b/sshpty.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshpty.h,v 1.5 2004/05/08 00:01:37 deraadt Exp $ */ 1/* $OpenBSD: sshpty.h,v 1.6 2006/02/07 01:42:00 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -17,6 +17,8 @@
17#ifndef SSHPTY_H 17#ifndef SSHPTY_H
18#define SSHPTY_H 18#define SSHPTY_H
19 19
20#include <termios.h>
21
20struct termios get_saved_tio(void); 22struct termios get_saved_tio(void);
21void leave_raw_mode(void); 23void leave_raw_mode(void);
22void enter_raw_mode(void); 24void enter_raw_mode(void);
diff --git a/sshtty.c b/sshtty.c
index 0b17c3e2d..dcaba1830 100644
--- a/sshtty.c
+++ b/sshtty.c
@@ -35,7 +35,9 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: sshtty.c,v 1.6 2004/05/08 00:01:37 deraadt Exp $"); 38RCSID("$OpenBSD: sshtty.c,v 1.7 2006/02/07 01:42:00 stevesk Exp $");
39
40#include <termios.h>
39 41
40#include "sshpty.h" 42#include "sshpty.h"
41#include "log.h" 43#include "log.h"
diff --git a/ttymodes.c b/ttymodes.c
index cf4c7d5c6..7f621e30e 100644
--- a/ttymodes.c
+++ b/ttymodes.c
@@ -43,7 +43,9 @@
43 */ 43 */
44 44
45#include "includes.h" 45#include "includes.h"
46RCSID("$OpenBSD: ttymodes.c,v 1.19 2003/04/08 20:21:29 itojun Exp $"); 46RCSID("$OpenBSD: ttymodes.c,v 1.20 2006/02/07 01:42:00 stevesk Exp $");
47
48#include <termios.h>
47 49
48#include "packet.h" 50#include "packet.h"
49#include "log.h" 51#include "log.h"