summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-08-07 16:09:27 +0000
committerJoshua Colp <jcolp@digium.com>2007-08-07 16:09:27 +0000
commit4684dd176141a1e9a07b77690ccac7d1f0477dc0 (patch)
tree1b56d9962b3312196b84b752395d75071f5d3b41 /channels
parentc40a9e281848ce68e70f22995d6b0634b53707a3 (diff)
Just for jsmith... make signaling a valid option that acts like signalling.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@78346 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 323a7f08e..3017e12a0 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -12087,7 +12087,7 @@ static int process_zap(struct zt_chan_conf *confp, struct ast_variable *v, int r
} else if (!strcasecmp(v->name, "sendcalleridafter")) {
confp->chan.sendcalleridafter = atoi(v->value);
} else if (!reload){
- if (!strcasecmp(v->name, "signalling")) {
+ if (!strcasecmp(v->name, "signalling") || !strcasecmp(v->name, "signaling")) {
confp->chan.outsigmod = -1;
if (!strcasecmp(v->value, "em")) {
confp->chan.sig = SIG_EM;