Cleanup the automatically-generated fields to match the rest.

Change-Id: I217d5c390c806dfa28c7e9ff155ef927ed2a9111
Reviewed-on: https://code.wireshark.org/review/303
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-02-21 15:55:13 -08:00
parent 4b28a988aa
commit 504eee7c23
1 changed files with 10 additions and 8 deletions

View File

@ -135,10 +135,9 @@ static int hf_rtsp_session = -1;
static int hf_rtsp_transport = -1;
static int hf_rtsp_rdtfeaturelevel = -1;
static int hf_rtsp_X_Vig_Msisdn = -1;
/* Generated from convert_proto_tree_add_text.pl */
static int hf_rtsp_magic = -1;
static int hf_rtsp_channel = -1;
static int hf_rtsp_length = -1;
static int hf_rtsp_magic = -1;
static int voip_tap = -1;
@ -1431,12 +1430,15 @@ proto_register_rtsp(void)
{ &hf_rtsp_X_Vig_Msisdn,
{ "X-Vig-Msisdn", "rtsp.X_Vig_Msisdn", FT_STRING, BASE_NONE, NULL, 0,
NULL, HFILL }},
/* Generated from convert_proto_tree_add_text.pl */
{ &hf_rtsp_magic, { "Magic", "rtsp.magic", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }},
{ &hf_rtsp_channel, { "Channel", "rtsp.channel", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }},
{ &hf_rtsp_length, { "Length", "rtsp.length", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }},
{ &hf_rtsp_magic,
{ "Magic", "rtsp.magic", FT_UINT8, BASE_HEX, NULL, 0x0,
NULL, HFILL }},
{ &hf_rtsp_channel,
{ "Channel", "rtsp.channel", FT_UINT8, BASE_HEX, NULL, 0x0,
NULL, HFILL }},
{ &hf_rtsp_length,
{ "Length", "rtsp.length", FT_UINT16, BASE_DEC, NULL, 0x0,
NULL, HFILL }},
};
module_t *rtsp_module;