diff options
-rw-r--r-- | drivers/isdn/i4l/isdn_common.c | 3 | ||||
-rw-r--r-- | drivers/isdn/i4l/isdn_tty.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/drivers/isdn/i4l/isdn_common.c b/drivers/isdn/i4l/isdn_common.c index d6952959d72a..9cef6fcf587b 100644 --- a/drivers/isdn/i4l/isdn_common.c +++ b/drivers/isdn/i4l/isdn_common.c | |||
@@ -914,6 +914,9 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack) | |||
914 | dflag = 0; | 914 | dflag = 0; |
915 | count_pull = count_put = 0; | 915 | count_pull = count_put = 0; |
916 | while ((count_pull < skb->len) && (len > 0)) { | 916 | while ((count_pull < skb->len) && (len > 0)) { |
917 | /* push every character but the last to the tty buffer directly */ | ||
918 | if ( count_put ) | ||
919 | tty_insert_flip_char(tty, last, TTY_NORMAL); | ||
917 | len--; | 920 | len--; |
918 | if (dev->drv[di]->DLEflag & DLEmask) { | 921 | if (dev->drv[di]->DLEflag & DLEmask) { |
919 | last = DLE; | 922 | last = DLE; |
diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c index 24679a3f5596..9cb6e5021adb 100644 --- a/drivers/isdn/i4l/isdn_tty.c +++ b/drivers/isdn/i4l/isdn_tty.c | |||
@@ -85,6 +85,8 @@ isdn_tty_try_read(modem_info * info, struct sk_buff *skb) | |||
85 | tty_insert_flip_char(tty, DLE, 0); | 85 | tty_insert_flip_char(tty, DLE, 0); |
86 | tty_insert_flip_char(tty, *dp++, 0); | 86 | tty_insert_flip_char(tty, *dp++, 0); |
87 | } | 87 | } |
88 | if (*dp == DLE) | ||
89 | tty_insert_flip_char(tty, DLE, 0); | ||
88 | last = *dp; | 90 | last = *dp; |
89 | } else { | 91 | } else { |
90 | #endif | 92 | #endif |