aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
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')) ||