[asterisk-commits] seanbright: trunk r138482 - /trunk/main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Aug 17 09:12:12 CDT 2008
Author: seanbright
Date: Sun Aug 17 09:12:11 2008
New Revision: 138482
URL: http://svn.digium.com/view/asterisk?view=rev&rev=138482
Log:
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.
Modified:
trunk/main/features.c
Modified: trunk/main/features.c
URL: http://svn.digium.com/view/asterisk/trunk/main/features.c?view=diff&rev=138482&r1=138481&r2=138482
==============================================================================
--- trunk/main/features.c (original)
+++ trunk/main/features.c Sun Aug 17 09:12:11 2008
@@ -603,16 +603,17 @@
manager_event(EVENT_FLAG_CALL, "ParkedCall",
"Exten: %s\r\n"
"Channel: %s\r\n"
- "Uniqueid: %s\r\n"
"Parkinglot: %s\r\n"
"From: %s\r\n"
"Timeout: %ld\r\n"
"CallerIDNum: %s\r\n"
- "CallerIDName: %s\r\n",
- pu->parkingexten, pu->chan->name, pu->chan->uniqueid, pu->parkinglot->name, peer ? peer->name : "",
+ "CallerIDName: %s\r\n"
+ "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),
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)) {
More information about the asterisk-commits
mailing list