summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-12 17:32:30 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-12 17:32:30 +0000
commitb7ae94dd0b90d126a5be2dd4362e6148980529aa (patch)
tree5c1bb4ab02adbb383dcef5f5db97e8202ce4afda
parent837461bf9a8f71b96a522bf6f51d6fdcb5b2a8cd (diff)
- (bal) Some platforms don't have ONLCR (Notable Mint)
-rw-r--r--ChangeLog3
-rw-r--r--ttymodes.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 014950c5a..64e351a5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
9 - (bal) Build noop setgroups() for cygwin to clean up code (For other 9 - (bal) Build noop setgroups() for cygwin to clean up code (For other
10 platforms without the setgroups() requirement, you MUST define 10 platforms without the setgroups() requirement, you MUST define
11 SETGROUPS_NOOP in the configure.ac) Based on patch by vinschen@redhat.com 11 SETGROUPS_NOOP in the configure.ac) Based on patch by vinschen@redhat.com
12 - (bal) Some platforms don't have ONLCR (Notable Mint)
12 13
1320020611 1420020611
14 - (bal) ssh-agent.c RCSD fix (|unexpand already done) 15 - (bal) ssh-agent.c RCSD fix (|unexpand already done)
@@ -921,4 +922,4 @@
921 - (stevesk) entropy.c: typo in debug message 922 - (stevesk) entropy.c: typo in debug message
922 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 923 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
923 924
924$Id: ChangeLog,v 1.2214 2002/06/12 16:57:14 mouring Exp $ 925$Id: ChangeLog,v 1.2215 2002/06/12 17:32:30 mouring Exp $
diff --git a/ttymodes.h b/ttymodes.h
index 687059281..7de4b8362 100644
--- a/ttymodes.h
+++ b/ttymodes.h
@@ -156,7 +156,9 @@ TTYMODE(OPOST, c_oflag, 70)
156#if defined(OLCUC) 156#if defined(OLCUC)
157TTYMODE(OLCUC, c_oflag, 71) 157TTYMODE(OLCUC, c_oflag, 71)
158#endif 158#endif
159#ifdef ONLCR
159TTYMODE(ONLCR, c_oflag, 72) 160TTYMODE(ONLCR, c_oflag, 72)
161#endif
160#ifdef OCRNL 162#ifdef OCRNL
161TTYMODE(OCRNL, c_oflag, 73) 163TTYMODE(OCRNL, c_oflag, 73)
162#endif 164#endif