diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-15 01:11:28 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-15 01:11:28 +0100 |
commit | 99bd21e3fe8f8312cb71c1ebf23c34a82a861429 (patch) | |
tree | 998eb58d19d512ff72278df354af214248b95f7c /clientloop.h | |
parent | - stevesk@cvs.openbsd.org 2006/02/07 01:18:09 (diff) | |
download | openssh-99bd21e3fe8f8312cb71c1ebf23c34a82a861429.tar.xz openssh-99bd21e3fe8f8312cb71c1ebf23c34a82a861429.zip |
- 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@
Diffstat (limited to 'clientloop.h')
-rw-r--r-- | clientloop.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clientloop.h b/clientloop.h index aed2d918b..64cd956d2 100644 --- a/clientloop.h +++ b/clientloop.h @@ -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> @@ -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, |