aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtse.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-05-11 03:53:31 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-05-11 03:53:31 +0000
commita0c858efcd190738de6152e6104794aea13b924b (patch)
tree121ec872bb5a09773fc09ab432e3ad854c604614 /epan/dissectors/packet-rtse.c
parentbbebafd9b4f909ca78d9027532ee2b46d21cd989 (diff)
Add a little more code to avoid not-very-useful blurbs:
- Change spaces in the name to underscores before comparing it to the blurb. - Check if the type simply as T_ prepended to the name. - Don't put in a blurb of "NULL". and regenerate the dissectors. svn path=/trunk/; revision=32748
Diffstat (limited to 'epan/dissectors/packet-rtse.c')
-rw-r--r--epan/dissectors/packet-rtse.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-rtse.c b/epan/dissectors/packet-rtse.c
index 9d7b822273..f3022db3e1 100644
--- a/epan/dissectors/packet-rtse.c
+++ b/epan/dissectors/packet-rtse.c
@@ -893,7 +893,7 @@ void proto_register_rtse(void) {
{ &hf_rtse_dialogueMode,
{ "dialogueMode", "rtse.dialogueMode",
FT_INT32, BASE_DEC, VALS(rtse_T_dialogueMode_vals), 0,
- "T_dialogueMode", HFILL }},
+ NULL, HFILL }},
{ &hf_rtse_connectionDataRQ,
{ "connectionDataRQ", "rtse.connectionDataRQ",
FT_UINT32, BASE_DEC, VALS(rtse_ConnectionData_vals), 0,
@@ -901,7 +901,7 @@ void proto_register_rtse(void) {
{ &hf_rtse_applicationProtocol,
{ "applicationProtocol", "rtse.applicationProtocol",
FT_INT32, BASE_DEC, VALS(rtse_T_applicationProtocol_vals), 0,
- "T_applicationProtocol", HFILL }},
+ NULL, HFILL }},
{ &hf_rtse_connectionDataAC,
{ "connectionDataAC", "rtse.connectionDataAC",
FT_UINT32, BASE_DEC, VALS(rtse_ConnectionData_vals), 0,
@@ -913,7 +913,7 @@ void proto_register_rtse(void) {
{ &hf_rtse_userDataRJ,
{ "userDataRJ", "rtse.userDataRJ",
FT_NONE, BASE_NONE, NULL, 0,
- "T_userDataRJ", HFILL }},
+ NULL, HFILL }},
{ &hf_rtse_abortReason,
{ "abortReason", "rtse.abortReason",
FT_INT32, BASE_DEC, VALS(rtse_AbortReason_vals), 0,
@@ -925,11 +925,11 @@ void proto_register_rtse(void) {
{ &hf_rtse_userdataAB,
{ "userdataAB", "rtse.userdataAB",
FT_NONE, BASE_NONE, NULL, 0,
- "T_userdataAB", HFILL }},
+ NULL, HFILL }},
{ &hf_rtse_open,
{ "open", "rtse.open",
FT_NONE, BASE_NONE, NULL, 0,
- "T_open", HFILL }},
+ NULL, HFILL }},
{ &hf_rtse_recover,
{ "recover", "rtse.recover",
FT_NONE, BASE_NONE, NULL, 0,
@@ -949,11 +949,11 @@ void proto_register_rtse(void) {
{ &hf_rtse_t61String,
{ "t61String", "rtse.t61String",
FT_STRING, BASE_NONE, NULL, 0,
- "T_t61String", HFILL }},
+ NULL, HFILL }},
{ &hf_rtse_octetString,
{ "octetString", "rtse.octetString",
FT_BYTES, BASE_NONE, NULL, 0,
- "T_octetString", HFILL }},
+ NULL, HFILL }},
/*--- End of included file: packet-rtse-hfarr.c ---*/
#line 349 "packet-rtse-template.c"