mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
According to the termio(7I) on Solaris, OLCUC is overridden by OPOST, so we
should send it with the SSH terminal modes too. [originally from svn r5680]
This commit is contained in:
parent
12d8a02aad
commit
55865685a9
@ -271,6 +271,9 @@ char *get_ttymode(void *frontend, const char *mode)
|
||||
GET_BOOL("IXANY", IXANY, c_iflag, );
|
||||
#endif
|
||||
/* Configuration of OPOST */
|
||||
#if defined(OLCUC)
|
||||
GET_BOOL("OLCUC", OLCUC, c_oflag, );
|
||||
#endif
|
||||
#if defined(ONLCR)
|
||||
GET_BOOL("ONLCR", ONLCR, c_oflag, );
|
||||
#endif
|
||||
@ -314,7 +317,7 @@ char *get_ttymode(void *frontend, const char *mode)
|
||||
* IGNPAR PARMRK INPCK CS7 CS8 PARENB PARODD
|
||||
* - Things that want to be enabled in one place that we don't
|
||||
* squash locally.
|
||||
* IUCLC OLCUC
|
||||
* IUCLC
|
||||
* - Status bits.
|
||||
* PENDIN
|
||||
* - Things I don't know what to do with. (FIXME)
|
||||
|
Loading…
Reference in New Issue
Block a user