summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--sshtty.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ad3feb46..1e64687b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,9 @@
17 [channels.c clientloop.c clientloop.h includes.h packet.h] 17 [channels.c clientloop.c clientloop.h includes.h packet.h]
18 [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c] 18 [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c]
19 move #include <termios.h> out of includes.h; ok markus@ 19 move #include <termios.h> out of includes.h; ok markus@
20 - stevesk@cvs.openbsd.org 2006/02/07 01:52:50
21 [sshtty.c]
22 "log.h" not needed
20 23
2120060313 2420060313
22 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 25 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -3918,4 +3921,4 @@
3918 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3921 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3919 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3922 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3920 3923
3921$Id: ChangeLog,v 1.4144 2006/03/15 00:11:28 djm Exp $ 3924$Id: ChangeLog,v 1.4145 2006/03/15 00:11:56 djm Exp $
diff --git a/sshtty.c b/sshtty.c
index dcaba1830..844a5c063 100644
--- a/sshtty.c
+++ b/sshtty.c
@@ -35,12 +35,11 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: sshtty.c,v 1.7 2006/02/07 01:42:00 stevesk Exp $"); 38RCSID("$OpenBSD: sshtty.c,v 1.8 2006/02/07 01:52:50 stevesk Exp $");
39 39
40#include <termios.h> 40#include <termios.h>
41 41
42#include "sshpty.h" 42#include "sshpty.h"
43#include "log.h"
44 43
45static struct termios _saved_tio; 44static struct termios _saved_tio;
46static int _in_raw_mode = 0; 45static int _in_raw_mode = 0;