Add missing unique id to ParkedCallGiveUp and ParkedCallTimeOut

manager events

(closes issue #13358)
Reported by: srt
Patches:
      13358_parking_events.diff uploaded by srt (license 378)



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@139558 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson 2008-08-22 20:02:35 +00:00
parent c0754e89ad
commit 060f6d5c3d
1 changed files with 4 additions and 2 deletions

View File

@ -2364,12 +2364,14 @@ static void post_manager_event(const char *s, struct parkeduser *pu)
"Channel: %s\r\n"
"Parkinglot: %s\r\n"
"CallerIDNum: %s\r\n"
"CallerIDName: %s\r\n\r\n",
"CallerIDName: %s\r\n",
"UniqueID: %s\r\n\r\n",
pu->parkingexten,
pu->chan->name,
pu->parkinglot->name,
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
);
}