Skip to content

Commit

Permalink
fixed bitmask to cover all 3 bits vs. 1st and 3rd. Thanks to eldonogi…
Browse files Browse the repository at this point in the history
…thub.
  • Loading branch information
Eric Tamme committed Feb 18, 2015
1 parent f61f685 commit adf010e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rtpengine/rtpengine.c
Expand Up @@ -1274,7 +1274,7 @@ static bencode_item_t *rtpe_function_call(bencode_buffer_t *bencbuf, struct sip_
bencode_dictionary_add(ng_flags.dict, "replace", ng_flags.replace);
if ((ng_flags.transport & 0x100))
bencode_dictionary_add_string(ng_flags.dict, "transport-protocol",
transports[ng_flags.transport & 0x005]);
transports[ng_flags.transport & 0x007]);
if (ng_flags.rtcp_mux && ng_flags.rtcp_mux->child)
bencode_dictionary_add(ng_flags.dict, "rtcp-mux", ng_flags.rtcp_mux);

Expand Down

0 comments on commit adf010e

Please sign in to comment.