summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-21 23:21:49 +0000
committerMark Spencer <markster@digium.com>2003-08-21 23:21:49 +0000
commit783fddaede2bbbd7a9a5af40773045f35e633ce2 (patch)
tree86ce94e06833a4a4efcf885da577ee969355c31f /apps/app_queue.c
parent3f2e9d2e0d0c04ba72bbc95f53241d0f91ff76e3 (diff)
Little queue fix (bug #150)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1399 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_queue.c')
-rwxr-xr-xapps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index e2f0295ca..174bd0a99 100755
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -230,7 +230,7 @@ static int join_queue(char *queuename, struct queue_ent *qe)
res = 0;
manager_event(EVENT_FLAG_CALL, "Join",
"Channel: %s\r\nCallerID: %s\r\nQueue: %s\r\nPosition: %d\r\nCount: %d\r\n",
- qe->chan->name, (qe->chan->callerid ? qe->chan->callerid : ""), q->name, qe->pos, q->count );
+ qe->chan->name, (qe->chan->callerid ? qe->chan->callerid : "unknown"), q->name, qe->pos, q->count );
#if 0
ast_log(LOG_NOTICE, "Queue '%s' Join, Channel '%s', Position '%d'\n", q->name, qe->chan->name, qe->pos );
#endif