]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix chan_iax2 to not report an RDNIS number if it is blank.
authorRichard Mudgett <rmudgett@digium.com>
Tue, 20 Dec 2011 23:08:21 +0000 (23:08 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Tue, 20 Dec 2011 23:08:21 +0000 (23:08 +0000)
Some ISDN switches complain or block the call if the RDNIS number is
empty.

* Made chan_iax2 not save a RDNIS number into the ast_channel if the
string is blank.  This is what other channel drivers do.

(closes issue ASTERISK-17152)
Reported by: rmudgett

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@348735 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_iax2.c

index 5d01f4ffdd8c2b7b3ea0d58ad39682eea2b6d80f..a9a9dec2529269c5839509b5c707b2e8fc4ed0a6 100644 (file)
@@ -5737,8 +5737,10 @@ static struct ast_channel *ast_iax2_new(int callno, int state, format_t capabili
                tmp->caller.ani.number.str = ast_strdup(i->cid_num);
        }
        tmp->dialed.number.str = ast_strdup(i->dnid);
-       tmp->redirecting.from.number.valid = 1;
-       tmp->redirecting.from.number.str = ast_strdup(i->rdnis);
+       if (!ast_strlen_zero(i->rdnis)) {
+               tmp->redirecting.from.number.valid = 1;
+               tmp->redirecting.from.number.str = ast_strdup(i->rdnis);
+       }
        tmp->caller.id.name.presentation = i->calling_pres;
        tmp->caller.id.number.presentation = i->calling_pres;
        tmp->caller.id.number.plan = i->calling_ton;