From: Richard Mudgett Date: Wed, 28 Sep 2011 22:36:57 +0000 (+0000) Subject: Merged revisions 338322 via svnmerge from X-Git-Tag: 10.0.0-rc1~133 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d5dc6650d0696d842bf50584df240402f967630;p=thirdparty%2Fasterisk.git 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/branches/10@338323 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/sig_pri.c b/channels/sig_pri.c index 533d6ccd58..5135e07ccd 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; }