aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-dsdrsp.c
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-10-07 23:46:44 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-10-07 23:46:44 +0000
commit4d2920314d4fccae47d2d0c63cf234d3320a2bcd (patch)
tree9cea3956d2210305bdbe9395b178f18340d21f45 /plugins/docsis/packet-dsdrsp.c
parentcf9760900c9098a06b3c9b7ab31d57f2578eed4f (diff)
From Chris Maynard <christopher.maynard@gtech.com>:
With the exception of docsis's packet-tlv.c file, these are all simple problems with the prefix not exactly set to PROTOABBREV. For example, for packet-bpkmattr.c, the field names are prefixed with "docsis.bpkmattr." instead of "docsis_bpkmattr.". packet-tlv.c had one mis-named field, namely "docsis.cos.sid". It has been changed to "docsis_tlv.cos.sid" in the patch to be attached, which includes patches for 29 files in the plugins/docsis/ directory ... svn path=/trunk/; revision=23088
Diffstat (limited to 'plugins/docsis/packet-dsdrsp.c')
-rw-r--r--plugins/docsis/packet-dsdrsp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/docsis/packet-dsdrsp.c b/plugins/docsis/packet-dsdrsp.c
index ce0875158c..0e6865c833 100644
--- a/plugins/docsis/packet-dsdrsp.c
+++ b/plugins/docsis/packet-dsdrsp.c
@@ -103,22 +103,22 @@ proto_register_docsis_dsdrsp (void)
/* Setup list of header fields See Section 1.6.1 for details*/
static hf_register_info hf[] = {
{&hf_docsis_dsdrsp,
- {"Dynamic Service Delete Response", "docsis.dsdrsp",
+ {"Dynamic Service Delete Response", "docsis_dsdrsp",
FT_BYTES, BASE_HEX, NULL, 0x0,
"Dynamic Service Delete Response", HFILL}
},
{&hf_docsis_dsdrsp_tranid,
- {"Transaction Id", "docsis.dsdrsp.tranid",
+ {"Transaction Id", "docsis_dsdrsp.tranid",
FT_UINT16, BASE_DEC, NULL, 0x0,
"Transaction Id", HFILL}
},
{&hf_docsis_dsdrsp_confcode,
- {"Confirmation Code", "docsis.dsdrsp.confcode",
+ {"Confirmation Code", "docsis_dsdrsp.confcode",
FT_UINT8, BASE_DEC, VALS (docsis_conf_code), 0x0,
"Confirmation Code", HFILL}
},
{&hf_docsis_dsdrsp_rsvd,
- {"Reserved", "docsis.dsdrsp.rsvd",
+ {"Reserved", "docsis_dsdrsp.rsvd",
FT_UINT8, BASE_DEC, NULL, 0x0,
"Reserved", HFILL}
},