summaryrefslogtreecommitdiff
path: root/main/stasis_endpoints.c
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-11-03 08:15:16 -0600
committerMatt Jordan <mjordan@digium.com>2015-11-03 09:18:41 -0500
commite26a06c1dafc9975a4e3a7e5e3153fcf75b1eeaa (patch)
tree9f700bf4f08c9d8bc8e8e8cde77264dec1a0089c /main/stasis_endpoints.c
parent40574a2ea31f03d5a4d3914f1e20895a9b49d7f0 (diff)
main/stasis_endpoints: Fix ContactStatusChange JSON for roundtrip_usec field
The JSON packing for the ContactStatusChange event forgot to include the roundtrip_usec field. As a result, the field never showed up in any event, even when the data was available. This patch corrects that error by properly packing the JSON blob with the data. Change-Id: I8df80da659a44010afbd48f645967518ff5daa17
Diffstat (limited to 'main/stasis_endpoints.c')
-rw-r--r--main/stasis_endpoints.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/stasis_endpoints.c b/main/stasis_endpoints.c
index f44ce4229..931bbb97d 100644
--- a/main/stasis_endpoints.c
+++ b/main/stasis_endpoints.c
@@ -247,7 +247,7 @@ static struct ast_json *contactstatus_to_json(struct stasis_message *msg, const
return NULL;
}
- json_final = ast_json_pack("{s: s, s: o, s: o, s: { s: s, s: s, s: s } } ",
+ json_final = ast_json_pack("{s: s, s: o, s: o, s: { s: s, s: s, s: s, s: s } } ",
"type", "ContactStatusChange",
"timestamp", ast_json_timeval(*tv, NULL),
"endpoint", json_endpoint,