aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtpproxy.c
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2015-05-05 13:17:03 +0300
committerAnders Broman <a.broman58@gmail.com>2015-05-22 09:08:48 +0000
commit5addf12c5f29404dc9d26abca72d45f88408fc85 (patch)
treef43fa76865d4a4ee9c5d2767e5a3365a2ee39571 /epan/dissectors/packet-rtpproxy.c
parent4dfc5a7204571ce8afd65b257ab95f761d2b23af (diff)
Change unofficial extension parameter
A character "v" was mapped to a different command parameter. So we should replace it. Change-Id: Ia668b0b0bead7bb4c4ba0a60f51f53daf2095a36 Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://code.wireshark.org/review/8571 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rtpproxy.c')
-rw-r--r--epan/dissectors/packet-rtpproxy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-rtpproxy.c b/epan/dissectors/packet-rtpproxy.c
index 2134fbd6af..8c78f86347 100644
--- a/epan/dissectors/packet-rtpproxy.c
+++ b/epan/dissectors/packet-rtpproxy.c
@@ -188,8 +188,8 @@ static const value_string paramtypenames[] = {
{'P', "Protocol type (unofficial extension)"},
{'t', "Transcode to (unofficial extension)"},
{'T', "Transcode to (unofficial extension)"},
- {'v', "Accounting (unofficial extension)"},
- {'V', "Accounting (unofficial extension)"},
+ {'u', "accoUnting (unofficial extension)"},
+ {'U', "accoUnting (unofficial extension)"},
{0, NULL}
};
@@ -425,7 +425,7 @@ rtpproxy_add_parameter(tvbuff_t *tvb, packet_info *pinfo, proto_tree *rtpproxy_t
proto_item_append_text(ti, " (%s)", val_to_str_ext((guint)strtoul(tvb_format_text(tvb,begin+offset, new_offset),NULL,10), &rtp_payload_type_vals_ext, "Unknown"));
offset += new_offset;
break;
- case 'v':
+ case 'u':
another_tree = proto_item_add_subtree(ti, ett_rtpproxy_command_parameters_acc);
proto_tree_add_item(another_tree, hf_rtpproxy_command_parameter_acc, tvb, begin+offset, 1, ENC_BIG_ENDIAN);
offset++;