[asterisk-commits] russell: branch 1.4 r187865 - /branches/1.4/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Apr 10 14:26:47 CDT 2009
Author: russell
Date: Fri Apr 10 14:26:40 2009
New Revision: 187865
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=187865
Log:
Support "signaling" in addition to "signalling".
The sample configuration file has references to both spellings.
Modified:
branches/1.4/channels/chan_dahdi.c
Modified: branches/1.4/channels/chan_dahdi.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/channels/chan_dahdi.c?view=diff&rev=187865&r1=187864&r2=187865
==============================================================================
--- branches/1.4/channels/chan_dahdi.c (original)
+++ branches/1.4/channels/chan_dahdi.c Fri Apr 10 14:26:40 2009
@@ -11544,8 +11544,8 @@
confp->chan.hanguponpolarityswitch = ast_true(v->value);
} else if (!strcasecmp(v->name, "sendcalleridafter")) {
confp->chan.sendcalleridafter = atoi(v->value);
- } else if (reload != 1){
- if (!strcasecmp(v->name, "signalling")) {
+ } else if (reload != 1) {
+ if (!strcasecmp(v->name, "signalling") || !strcasecmp(v->name, "signaling")) {
confp->chan.outsigmod = -1;
if (!strcasecmp(v->value, "em")) {
confp->chan.sig = SIG_EM;
More information about the asterisk-commits
mailing list