diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-09 22:26:23 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-09 22:26:23 +1100 |
commit | 37c1b3d6fc9043123f33e64051ea56656a5e7ef4 (patch) | |
tree | 644c0ffdcb779ac87c50a223f39ded86570f48a3 /sshpty.h | |
parent | 838891fe85308399c4f350f8174013987b6a2f85 (diff) | |
download | openssh-git-37c1b3d6fc9043123f33e64051ea56656a5e7ef4.tar.gz |
- djm@cvs.openbsd.org 2010/01/09 05:04:24
[mux.c sshpty.h clientloop.c sshtty.c]
quell tc[gs]etattr warnings when forcing a tty (ssh -tt), since we
usually don't actually have a tty to read/set; bz#1686 ok dtucker@
Diffstat (limited to 'sshpty.h')
-rw-r--r-- | sshpty.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sshpty.h,v 1.11 2008/05/19 15:45:07 djm Exp $ */ +/* $OpenBSD: sshpty.h,v 1.12 2010/01/09 05:04:24 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -17,8 +17,8 @@ #include <termios.h> struct termios *get_saved_tio(void); -void leave_raw_mode(void); -void enter_raw_mode(void); +void leave_raw_mode(int); +void enter_raw_mode(int); int pty_allocate(int *, int *, char *, size_t); void pty_release(const char *); |