mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 10:22:46 +00:00
Merged revisions 280229 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ........ r280229 | rmudgett | 2010-07-28 14:57:49 -0500 (Wed, 28 Jul 2010) | 2 lines Add missing enum value "unknown" to the SS7 called_nai and calling_nai config options. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@280235 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -16968,6 +16968,8 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct
|
||||
confp->ss7.ss7.called_nai = SS7_NAI_INTERNATIONAL;
|
||||
} else if (!strcasecmp(v->value, "subscriber")) {
|
||||
confp->ss7.ss7.called_nai = SS7_NAI_SUBSCRIBER;
|
||||
} else if (!strcasecmp(v->value, "unknown")) {
|
||||
confp->ss7.ss7.called_nai = SS7_NAI_UNKNOWN;
|
||||
} else if (!strcasecmp(v->value, "dynamic")) {
|
||||
confp->ss7.ss7.called_nai = SS7_NAI_DYNAMIC;
|
||||
} else {
|
||||
@@ -16980,6 +16982,8 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct
|
||||
confp->ss7.ss7.calling_nai = SS7_NAI_INTERNATIONAL;
|
||||
} else if (!strcasecmp(v->value, "subscriber")) {
|
||||
confp->ss7.ss7.calling_nai = SS7_NAI_SUBSCRIBER;
|
||||
} else if (!strcasecmp(v->value, "unknown")) {
|
||||
confp->ss7.ss7.calling_nai = SS7_NAI_UNKNOWN;
|
||||
} else if (!strcasecmp(v->value, "dynamic")) {
|
||||
confp->ss7.ss7.calling_nai = SS7_NAI_DYNAMIC;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user