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-ascend.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-ascend.c')
-rw-r--r-- | packet-ascend.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packet-ascend.c b/packet-ascend.c index ce351ce6b2..b0b5d40b73 100644 --- a/packet-ascend.c +++ b/packet-ascend.c @@ -1,7 +1,7 @@ /* packet-ascend.c * Routines for decoding Lucent/Ascend packet traces * - * $Id: packet-ascend.c,v 1.25 2001/03/30 06:10:54 guy Exp $ + * $Id: packet-ascend.c,v 1.26 2001/06/18 02:17:44 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -113,27 +113,27 @@ proto_register_ascend(void) static hf_register_info hf[] = { { &hf_link_type, { "Link type", "ascend.type", FT_UINT32, BASE_DEC, VALS(encaps_vals), 0x0, - "" }}, + "", HFILL }}, { &hf_session_id, { "Session ID", "ascend.sess", FT_UINT32, BASE_DEC, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_called_number, { "Called number", "ascend.number", FT_STRING, BASE_NONE, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_chunk, { "WDD Chunk", "ascend.chunk", FT_UINT32, BASE_HEX, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_task, { "Task", "ascend.task", FT_UINT32, BASE_HEX, NULL, 0x0, - "" }}, + "", HFILL }}, { &hf_user_name, { "User name", "ascend.user", FT_STRING, BASE_NONE, NULL, 0x0, - "" }}, + "", HFILL }}, }; static gint *ett[] = { &ett_raw, |