mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 07:01:09 +00:00
Move Uniqueid to the end of the event for those that rely on the position
of the name/value pairs, pointed out by snuffy-home on #asterisk-commits. For those of you who rely on the position of name/value pairs in manager events... stop... that is why associative arrays were invented. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@138482 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -603,16 +603,17 @@ static int ast_park_call_full(struct ast_channel *chan, struct ast_channel *peer
|
|||||||
manager_event(EVENT_FLAG_CALL, "ParkedCall",
|
manager_event(EVENT_FLAG_CALL, "ParkedCall",
|
||||||
"Exten: %s\r\n"
|
"Exten: %s\r\n"
|
||||||
"Channel: %s\r\n"
|
"Channel: %s\r\n"
|
||||||
"Uniqueid: %s\r\n"
|
|
||||||
"Parkinglot: %s\r\n"
|
"Parkinglot: %s\r\n"
|
||||||
"From: %s\r\n"
|
"From: %s\r\n"
|
||||||
"Timeout: %ld\r\n"
|
"Timeout: %ld\r\n"
|
||||||
"CallerIDNum: %s\r\n"
|
"CallerIDNum: %s\r\n"
|
||||||
"CallerIDName: %s\r\n",
|
"CallerIDName: %s\r\n"
|
||||||
pu->parkingexten, pu->chan->name, pu->chan->uniqueid, pu->parkinglot->name, peer ? peer->name : "",
|
"Uniqueid: %s\r\n",
|
||||||
|
pu->parkingexten, pu->chan->name, pu->parkinglot->name, peer ? peer->name : "",
|
||||||
(long)pu->start.tv_sec + (long)(pu->parkingtime/1000) - (long)time(NULL),
|
(long)pu->start.tv_sec + (long)(pu->parkingtime/1000) - (long)time(NULL),
|
||||||
S_OR(pu->chan->cid.cid_num, "<unknown>"),
|
S_OR(pu->chan->cid.cid_num, "<unknown>"),
|
||||||
S_OR(pu->chan->cid.cid_name, "<unknown>")
|
S_OR(pu->chan->cid.cid_name, "<unknown>"),
|
||||||
|
pu->chan->uniqueid
|
||||||
);
|
);
|
||||||
|
|
||||||
if (peer && adsipark && ast_adsi_available(peer)) {
|
if (peer && adsipark && ast_adsi_available(peer)) {
|
||||||
|
Reference in New Issue
Block a user