diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2016-05-03 09:03:50 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2016-05-03 09:03:50 +0000 |
commit | e3a9fe3af958d85413d5fedc1c64536bf67bf9dd (patch) | |
tree | 7305eca32616e151dfd6da8d9c0bc452f3c171cd /usr.bin/ssh | |
parent | 462e12664fd37974b168bdb66da67e5afea18b5a (diff) |
Implement IUTF8 as per draft-sgtatham-secsh-iutf8-00. Patch from Simon
Tatham, ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ttymodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/ttymodes.h b/usr.bin/ssh/ttymodes.h index 9e5cc943988..f3522ad9988 100644 --- a/usr.bin/ssh/ttymodes.h +++ b/usr.bin/ssh/ttymodes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ttymodes.h,v 1.14 2006/03/25 22:22:43 djm Exp $ */ +/* $OpenBSD: ttymodes.h,v 1.15 2016/05/03 09:03:49 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -127,6 +127,9 @@ TTYMODE(IXOFF, c_iflag, 40) #ifdef IMAXBEL TTYMODE(IMAXBEL,c_iflag, 41) #endif /* IMAXBEL */ +#ifdef IUTF8 +TTYMODE(IUTF8, c_iflag, 42) +#endif /* IUTF8 */ TTYMODE(ISIG, c_lflag, 50) TTYMODE(ICANON, c_lflag, 51) |