Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75271
b: refs/heads/master
c: 7fde4d7
h: refs/heads/master
i:
  75269: 0b7f11b
  75267: b18bf29
  75263: 37a838c
v: v3
  • Loading branch information
Matthias Goebl authored and David S. Miller committed Jan 4, 2008
1 parent 3aadb5f commit 976d20c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00409bb045887ec5e7b9e351bc080c38ab6bfd33
refs/heads/master: 7fde4d779b83898851959f837c9b26fe07ee91c9
3 changes: 3 additions & 0 deletions trunk/drivers/isdn/i4l/isdn_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,9 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack)
dflag = 0;
count_pull = count_put = 0;
while ((count_pull < skb->len) && (len > 0)) {
/* push every character but the last to the tty buffer directly */
if ( count_put )
tty_insert_flip_char(tty, last, TTY_NORMAL);
len--;
if (dev->drv[di]->DLEflag & DLEmask) {
last = DLE;
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/isdn/i4l/isdn_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ isdn_tty_try_read(modem_info * info, struct sk_buff *skb)
tty_insert_flip_char(tty, DLE, 0);
tty_insert_flip_char(tty, *dp++, 0);
}
if (*dp == DLE)
tty_insert_flip_char(tty, DLE, 0);
last = *dp;
} else {
#endif
Expand Down

0 comments on commit 976d20c

Please sign in to comment.