summaryrefslogtreecommitdiff
path: root/sshpty.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2008-06-08 12:53:20 +1000
committerDarren Tucker <dtucker@zip.com.au>2008-06-08 12:53:20 +1000
commitdd39264e4b4fcd5a9fd4141b1f7b10eff09b3f8c (patch)
tree0430fcc66e198ba19cf1039fe6bc5b488bb65344 /sshpty.h
parent136e56f68967fd39e8868769f3af316f1cca0559 (diff)
- djm@cvs.openbsd.org 2008/05/19 15:45:07
[sshtty.c ttymodes.c sshpty.h] Fix sending tty modes when stdin is not a tty (bz#1199). Previously we would send the modes corresponding to a zeroed struct termios, whereas we should have been sending an empty list of modes. Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
Diffstat (limited to 'sshpty.h')
-rw-r--r--sshpty.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshpty.h b/sshpty.h
index 7fac622d..ac900358 100644
--- a/sshpty.h
+++ b/sshpty.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.h,v 1.10 2006/08/03 03:34:42 deraadt Exp $ */
+/* $OpenBSD: sshpty.h,v 1.11 2008/05/19 15:45:07 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -16,7 +16,7 @@
#include <termios.h>
-struct termios get_saved_tio(void);
+struct termios *get_saved_tio(void);
void leave_raw_mode(void);
void enter_raw_mode(void);