From f18ac661854f08404d12a32e012afef09d31c814 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 16 Dec 2007 17:18:43 +0000 Subject: Quick start section in man page. --- tty.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tty.c') diff --git a/tty.c b/tty.c index 13940040..e8d54764 100644 --- a/tty.c +++ b/tty.c @@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.16 2007-12-10 07:58:00 nicm Exp $ */ +/* $Id: tty.c,v 1.17 2007-12-16 17:18:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -93,9 +93,11 @@ tty_open(struct tty *tty, char **cause) if (tcsetattr(tty->fd, TCSANOW, &tio) != 0) fatal("tcsetattr failed"); +#ifdef TIOCFLUSH what = 0; if (ioctl(tty->fd, TIOCFLUSH, &what) != 0) fatal("ioctl(TIOCFLUSH)"); +#endif if (enter_ca_mode != NULL) tty_puts(tty, enter_ca_mode); -- cgit