The patch titled
Fix broken CLIR in isdn driver
has been added to the -mm tree. Its filename is
fix-broken-clir-in-isdn-driver.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: Fix broken CLIR in isdn driver
From: Karsten Keil <[EMAIL PROTECTED]>
I noticed that CLIR (aka "hide your calling number") in isdn_tty is broken:
The at-command parser filters out the required "R" (e.g. ATDR089123456)
It's been broken for a *very* long time.
Signed-off-by: Karsten Keil <[EMAIL PROTECTED]>
Signed-off-by: Matthias Goebl <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/isdn/i4l/isdn_tty.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
diff -puN drivers/isdn/i4l/isdn_tty.c~fix-broken-clir-in-isdn-driver
drivers/isdn/i4l/isdn_tty.c
--- a/drivers/isdn/i4l/isdn_tty.c~fix-broken-clir-in-isdn-driver
+++ a/drivers/isdn/i4l/isdn_tty.c
@@ -2693,8 +2693,9 @@ isdn_tty_getdial(char *p, char *q,int cn
int limit = ISDN_MSNLEN - 1; /* MUST match the size of interface var
to avoid
buffer overflow */
- while (strchr(" 0123456789,#.*WPTS-", *p) && *p && --cnt>0) {
+ while (strchr(" 0123456789,#.*WPTSR-", *p) && *p && --cnt>0) {
if ((*p >= '0' && *p <= '9') || ((*p == 'S') && first) ||
+ ((*p == 'R') && first) ||
(*p == '*') || (*p == '#')) {
*q++ = *p;
limit--;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
use-mutex-instead-of-semaphore-in-capi-20-driver.patch
use-menuconfig-objects-ii-isdn.patch
make-isdn-capi-use-seq_list_xxx-helpers.patch
update-isdn-tree-to-use-pci_get_device.patch
isdn4linux-fix-maturity-label-v4.patch
fix-broken-clir-in-isdn-driver.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html