]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] fix processing of the last byte in isdn_readbchan_tty()
authorKarsten Keil <kkeil@suse.de>
Mon, 26 Jun 2006 18:21:01 +0000 (20:21 +0200)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 26 Jun 2006 19:41:54 +0000 (12:41 -0700)
The changes in the tty handling contain a bug while accessing
the last byte in the skb. Since special sequence for control of
DTMF and FAX via ttyI* devices handled via this path, these services
do not work anymore.

Signed-off-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/isdn/i4l/isdn_common.c

index 81accdf35168c4607358de042a379684d715f2d0..b26e509ec7593a89ba358db502418dce516b3f61 100644 (file)
@@ -933,7 +933,7 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack)
                        count_put = count_pull;
                        if(count_put > 1)
                                tty_insert_flip_string(tty, skb->data, count_put - 1);
-                       last = skb->data[count_put] - 1;
+                       last = skb->data[count_put - 1];
                        len -= count_put;
 #ifdef CONFIG_ISDN_AUDIO
                }