summaryrefslogtreecommitdiff
path: root/packet-isis-lsp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-18 02:18:27 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-18 02:18:27 +0000
commit84123931970a8a0f1af281e7351eadabba3c0908 (patch)
tree90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-isis-lsp.c
parentb9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff)
downloadwireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.gz
From Joerg Mayer: explicitly fill in all members of a
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
Diffstat (limited to 'packet-isis-lsp.c')
-rw-r--r--packet-isis-lsp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/packet-isis-lsp.c b/packet-isis-lsp.c
index c2990ef2be..cd2b3f741f 100644
--- a/packet-isis-lsp.c
+++ b/packet-isis-lsp.c
@@ -1,7 +1,7 @@
/* packet-isis-lsp.c
* Routines for decoding isis lsp packets and their CLVs
*
- * $Id: packet-isis-lsp.c,v 1.16 2001/06/18 01:24:58 guy Exp $
+ * $Id: packet-isis-lsp.c,v 1.17 2001/06/18 02:17:47 guy Exp $
* Stuart Stanley <stuarts@mxmail.net>
*
* Ethereal - Network traffic analyzer
@@ -1546,31 +1546,31 @@ proto_register_isis_lsp(void) {
static hf_register_info hf[] = {
{ &hf_isis_lsp_pdu_length,
{ "PDU length", "isis_lsp.pdu_length", FT_UINT16,
- BASE_DEC, NULL, 0x0, "" }},
+ BASE_DEC, NULL, 0x0, "", HFILL }},
{ &hf_isis_lsp_remaining_life,
{ "Remaining life", "isis_lsp.remaining_life", FT_UINT16,
- BASE_DEC, NULL, 0x0, "" }},
+ BASE_DEC, NULL, 0x0, "", HFILL }},
{ &hf_isis_lsp_sequence_number,
{ "Sequence number", "isis_lsp.sequence_number",
- FT_UINT32, BASE_HEX, NULL, 0x0, "" }},
+ FT_UINT32, BASE_HEX, NULL, 0x0, "", HFILL }},
{ &hf_isis_lsp_checksum,
{ "Checksum", "isis_lsp.checksum",FT_UINT16,
- BASE_HEX, NULL, 0x0, "" }},
+ BASE_HEX, NULL, 0x0, "", HFILL }},
{ &hf_isis_lsp_clv_ipv4_int_addr,
{ "IPv4 interface address", "isis_lsp.clv_ipv4_int_addr", FT_IPv4,
- BASE_NONE, NULL, 0x0, "" }},
+ BASE_NONE, NULL, 0x0, "", HFILL }},
{ &hf_isis_lsp_clv_ipv6_int_addr,
{ "IPv6 interface address", "isis_lsp.clv_ipv6_int_addr", FT_IPv6,
- BASE_NONE, NULL, 0x0, "" }},
+ BASE_NONE, NULL, 0x0, "", HFILL }},
{ &hf_isis_lsp_clv_te_router_id,
{ "Traffic Engineering Router ID", "isis_lsp.clv_te_router_id", FT_IPv4,
- BASE_NONE, NULL, 0x0, "" }},
+ BASE_NONE, NULL, 0x0, "", HFILL }},
};
static gint *ett[] = {
&ett_isis_lsp,