summaryrefslogtreecommitdiff
path: root/channels/sig_pri.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2011-09-28 22:38:00 +0000
committerRichard Mudgett <rmudgett@digium.com>2011-09-28 22:38:00 +0000
commit50350a47ea1dcf5eaf3e2a60b490b1f2a6f692a5 (patch)
tree8e29385bd53348b9b15e38a6a94f4b2e0342e26d /channels/sig_pri.c
parente9736c586f5ec3e0b66c94c713402163319af919 (diff)
Merged revisions 338323 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r338323 | rmudgett | 2011-09-28 17:36:57 -0500 (Wed, 28 Sep 2011) | 12 lines Merged revisions 338322 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r338322 | rmudgett | 2011-09-28 17:35:52 -0500 (Wed, 28 Sep 2011) | 5 lines Make duplicate call ptr warning message more helpful. * Adds the value of the call ptr to the duplicate call ptr message to help trace why there is a duplicate call ptr. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@338324 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/sig_pri.c')
-rw-r--r--channels/sig_pri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/sig_pri.c b/channels/sig_pri.c
index 533d6ccd5..5135e07cc 100644
--- a/channels/sig_pri.c
+++ b/channels/sig_pri.c
@@ -5838,8 +5838,8 @@ static void *pri_dchannel(void *vpri)
if (-1 < chanpos) {
/* Libpri has already filtered out duplicate SETUPs. */
ast_log(LOG_WARNING,
- "Span %d: Got SETUP with duplicate call ptr. Dropping call.\n",
- pri->span);
+ "Span %d: Got SETUP with duplicate call ptr (%p). Dropping call.\n",
+ pri->span, e->ring.call);
pri_hangup(pri->pri, e->ring.call, PRI_CAUSE_NORMAL_TEMPORARY_FAILURE);
break;
}