summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-06-11 12:24:13 +0000
committerMark Spencer <markster@digium.com>2003-06-11 12:24:13 +0000
commit6407936c276a8a3cf0f01645bbef7e760e21685c (patch)
tree49b6932b5126f10f89ae79803d99a9911f2b8d6d /pbx.c
parentfc12d8258b2c00ab7b96017553f5b91827dde7f2 (diff)
manager unique id
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1083 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pbx.c b/pbx.c
index 9d7ea64b8..a7bbf523f 100755
--- a/pbx.c
+++ b/pbx.c
@@ -1670,8 +1670,9 @@ int ast_pbx_run(struct ast_channel *c)
"Channel: %s\r\n"
"Context: %s\r\n"
"Extension: %s\r\n"
- "Priority: %d\r\n",
- c->name, c->context, c->exten, c->priority);
+ "Priority: %d\r\n"
+ "Uniqueid: %s\r\n",
+ c->name, c->context, c->exten, c->priority, c->uniqueid);
if ((res = ast_spawn_extension(c, c->context, c->exten, c->priority, c->callerid))) {
/* Something bad happened, or a hangup has been requested. */
if (((res >= '0') && (res <= '9')) || ((res >= 'A') && (res <= 'F')) ||