aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-21 23:21:49 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-21 23:21:49 +0000
commit38ec00d7ce9bb580eec7bfdbf94fdea4407d00ac (patch)
tree86ce94e06833a4a4efcf885da577ee969355c31f
parent6abe671e9b95ff13283068e2f6344fabeb9f7f5c (diff)
Little queue fix (bug #150)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1399 f38db490-d61c-443f-a65b-d21fe96a405b
-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