Merge pull request #1716 in FS/freeswitch from ~LWAHLMEIER/freeswitch:bugfix/FS-11342-hep-and-hep3-has-incorrect-capture_id to master

* commit '2ba80c056ef7e5c4ad928d15c60193374cb7bc77':
  FS-11342: fixed hep3 capture_id
This commit is contained in:
Mike Jerris 2019-05-09 16:23:03 -05:00
commit 89379c38e1
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ int tport_capt_msg_hepv3 (tport_t const *self, msg_t *msg, size_t n,
/* Capture ID */
hg->capt_id.chunk.vendor_id = htons(0x0000);
hg->capt_id.chunk.type_id = htons(0x000c);
hg->capt_id.data = htons(mr->mr_agent_id);
hg->capt_id.data = htonl(mr->mr_agent_id);
hg->capt_id.chunk.length = htons(sizeof(hg->capt_id));