dect
/
asterisk
Archived
13
0
Fork 0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3238 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-06-17 14:53:25 +00:00
parent 05245ff00b
commit f31f5efca5
1 changed files with 2 additions and 2 deletions

View File

@ -6965,7 +6965,7 @@ static void *pri_dchannel(void *vpri)
} else {
chanpos = pri_fixup_principle(pri, chanpos, e->ring.call);
if (chanpos > -1) {
ast_mutex_lock(&pri->pvts[x]->lock);
ast_mutex_lock(&pri->pvts[chanpos]->lock);
/* queue DTMF frame if the PBX for this call was already started (we're forwarding INFORMATION further on */
if (pri->overlapdial && pri->pvts[chanpos]->call==e->ring.call && pri->pvts[chanpos]->owner) {
/* how to do that */
@ -6980,7 +6980,7 @@ static void *pri_dchannel(void *vpri)
}
}
}
ast_mutex_unlock(&pri->pvts[x]->lock);
ast_mutex_unlock(&pri->pvts[chanpos]->lock);
}
}
break;