From 642dd656eb3433dbe67022cd0843b2af8d44b0dd Mon Sep 17 00:00:00 2001
From: Sean Bright <sean@malleable.com>
Date: Sun, 17 Aug 2008 14:12:11 +0000
Subject: [PATCH] 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
---
 main/features.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/main/features.c b/main/features.c
index 6b0627f545..90acb2b13c 100644
--- a/main/features.c
+++ b/main/features.c
@@ -603,16 +603,17 @@ static int ast_park_call_full(struct ast_channel *chan, struct ast_channel *peer
 	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)) {
-- 
GitLab