diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
commit | 84123931970a8a0f1af281e7351eadabba3c0908 (patch) | |
tree | 90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-q2931.c | |
parent | b9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff) | |
download | wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.gz wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.bz2 wireshark-84123931970a8a0f1af281e7351eadabba3c0908.zip |
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-q2931.c')
-rw-r--r-- | packet-q2931.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/packet-q2931.c b/packet-q2931.c index 6538890bc0..06aa06b6bf 100644 --- a/packet-q2931.c +++ b/packet-q2931.c @@ -2,7 +2,7 @@ * Routines for Q.2931 frame disassembly * Guy Harris <guy@alum.mit.edu> * - * $Id: packet-q2931.c,v 1.17 2001/05/27 07:18:08 guy Exp $ + * $Id: packet-q2931.c,v 1.18 2001/06/18 02:17:50 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -2086,35 +2086,35 @@ proto_register_q2931(void) static hf_register_info hf[] = { { &hf_q2931_discriminator, { "Protocol discriminator", "q2931.disc", FT_UINT8, BASE_HEX, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_q2931_call_ref_len, { "Call reference value length", "q2931.call_ref_len", FT_UINT8, BASE_DEC, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_q2931_call_ref, { "Call reference value", "q2931.call_ref", FT_BYTES, BASE_HEX, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_q2931_message_type, { "Message type", "q2931.message_type", FT_UINT8, BASE_HEX, VALS(q2931_message_type_vals), 0x0, - "" }}, + "", HFILL }}, { &hf_q2931_message_type_ext, { "Message type extension", "q2931.message_type_ext", FT_UINT8, BASE_HEX, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_q2931_message_flag, { "Flag", "q2931.message_flag", FT_BOOLEAN, 8, TFS(&tos_msg_flag), Q2931_MSG_TYPE_EXT_FOLLOW_INST, - "" }}, + "", HFILL }}, { &hf_q2931_message_action_indicator, { "Action indicator", "q2931.message_action_indicator", FT_UINT8, BASE_DEC, VALS(msg_action_ind_vals), Q2931_MSG_TYPE_EXT_ACTION_IND, - "" }}, + "", HFILL }}, { &hf_q2931_message_len, { "Message length", "q2931.message_len", FT_UINT16, BASE_DEC, NULL, 0x0, - "" }}, + "", HFILL }}, }; static gint *ett[] = { |