aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-23 21:49:03 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-23 21:49:03 +0000
commit24fb5dbe31dda3ff612b157c0f6b3074ca270df0 (patch)
treeffa81e4a502c3b47765335d4b4b903c2b9037134 /channels
parentee55d65fa407d6fa4ccda5cc85c5b0ffdcadbc95 (diff)
inbandrelease is gone - it's now inbanddisconnect
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@133295 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_dahdi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index e1acd1bd3..233de903e 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -7369,7 +7369,7 @@ static struct dahdi_pvt *mkintf(int channel, const struct dahdi_chan_conf *conf,
pris[span].minidle = conf->pri.minidle;
pris[span].overlapdial = conf->pri.overlapdial;
#ifdef HAVE_PRI_INBANDDISCONNECT
- pris[span].inbanddisconnect = conf->pri.inbandrelease;
+ pris[span].inbanddisconnect = conf->pri.inbanddisconnect;
#endif
pris[span].facilityenable = conf->pri.facilityenable;
ast_copy_string(pris[span].idledial, conf->pri.idledial, sizeof(pris[span].idledial));
@@ -9564,7 +9564,7 @@ static int start_pri(struct dahdi_pri *pri)
pri->overlapdial = 1;
pri_set_overlapdial(pri->dchans[i],pri->overlapdial);
#ifdef HAVE_PRI_INBANDDISCONNECT
- pri_set_inbanddisconnect(pri->dchans[i], pri->inbandrelease);
+ pri_set_inbanddisconnect(pri->dchans[i], pri->inbanddisconnect);
#endif
/* Enslave to master if appropriate */
if (i)