dect
/
asterisk
Archived
13
0
Fork 0

Add original position, when logging a caller entering a queue.

(closes issue #15146)
 Reported by: arabe
 Patches: 
       asterisk-trunk.patch uploaded by arabe (license 786)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@213414 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2009-08-20 22:13:26 +00:00
parent d7460ab190
commit 910260c619
1 changed files with 2 additions and 2 deletions

View File

@ -5388,8 +5388,8 @@ static int queue_exec(struct ast_channel *chan, const char *data)
set_queue_result(chan, reason);
return 0;
}
ast_queue_log(args.queuename, chan->uniqueid, "NONE", "ENTERQUEUE", "%s|%s", S_OR(args.url, ""),
S_OR(chan->cid.cid_num, ""));
ast_queue_log(args.queuename, chan->uniqueid, "NONE", "ENTERQUEUE", "%s|%s|%d", S_OR(args.url, ""),
S_OR(chan->cid.cid_num, ""), qe.opos);
copy_rules(&qe, args.rule);
qe.pr = AST_LIST_FIRST(&qe.qe_rules);
check_turns: