]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Make duplicate call ptr warning message more helpful.
authorRichard Mudgett <rmudgett@digium.com>
Wed, 28 Sep 2011 22:35:52 +0000 (22:35 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Wed, 28 Sep 2011 22:35:52 +0000 (22:35 +0000)
* 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/1.8@338322 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/sig_pri.c

index 6edb65bfcd0a0a4a7d15321eede1476fcaed63fc..ed4e55b73cb6611d9c20d6fca99099f2367aea14 100644 (file)
@@ -4988,8 +4988,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;
                                }