Skip to content

Commit

Permalink
- stevesk@cvs.openbsd.org 2006/02/07 01:42:00
Browse files Browse the repository at this point in the history
     [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@
  • Loading branch information
djmdjm committed Mar 15, 2006
1 parent 2eb6340 commit 99bd21e
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 12 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 $
4 changes: 3 additions & 1 deletion channels.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion clientloop.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion clientloop.h
Original file line number Diff line number Diff line change
@@ -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>
Expand Down Expand Up @@ -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,
Expand Down
3 changes: 1 addition & 2 deletions includes.h
Original file line number Diff line number Diff line change
@@ -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>
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion packet.h
Original file line number Diff line number Diff line change
@@ -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>
Expand All @@ -16,6 +16,8 @@
#ifndef PACKET_H
#define PACKET_H

#include <termios.h>

#include <openssl/bn.h>

void packet_set_connection(int, int);
Expand Down
4 changes: 3 additions & 1 deletion serverloop.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion sshpty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 3 additions & 1 deletion sshpty.h
Original file line number Diff line number Diff line change
@@ -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>
Expand All @@ -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);
Expand Down
4 changes: 3 additions & 1 deletion sshtty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion ttymodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 99bd21e

Please sign in to comment.