aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-11 12:24:13 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-11 12:24:13 +0000
commitf8d206eb069c58d3f75dcc6c4657b826419ed8f7 (patch)
tree49b6932b5126f10f89ae79803d99a9911f2b8d6d /pbx.c
parent2b00e8b98b0b5a5b12069f55e49aaf4ab523968d (diff)
manager unique id
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1083 f38db490-d61c-443f-a65b-d21fe96a405b
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')) ||