From: Russell Bryant Date: Fri, 10 Apr 2009 19:26:40 +0000 (+0000) Subject: Support "signaling" in addition to "signalling". X-Git-Tag: 1.4.25-rc1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b0c55768a195d88a9f1e5c8c46a5744a503a484;p=thirdparty%2Fasterisk.git Support "signaling" in addition to "signalling". The sample configuration file has references to both spellings. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@187865 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index bf78cebd02..e1f9e437c4 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -11544,8 +11544,8 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct 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;