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-icq.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-icq.c')
-rw-r--r-- | packet-icq.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packet-icq.c b/packet-icq.c index 4fc673e0a2..1822d3bcdb 100644 --- a/packet-icq.c +++ b/packet-icq.c @@ -1,7 +1,7 @@ /* packet-icq.c * Routines for ICQ packet disassembly * - * $Id: packet-icq.c,v 1.31 2001/05/27 21:37:23 guy Exp $ + * $Id: packet-icq.c,v 1.32 2001/06/18 02:17:46 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -2161,17 +2161,17 @@ proto_register_icq(void) { static hf_register_info hf[] = { { &hf_icq_type, - {"Type", "icq.type", FT_UINT16, BASE_DEC, NULL, 0x0, ""}}, + {"Type", "icq.type", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL }}, { &hf_icq_uin, - {"UIN", "icq.uin", FT_UINT32, BASE_DEC, NULL, 0x0, ""}}, + {"UIN", "icq.uin", FT_UINT32, BASE_DEC, NULL, 0x0, "", HFILL }}, { &hf_icq_sessionid, - {"Session ID", "icq.sessionid", FT_UINT32, BASE_HEX, NULL, 0x0, ""}}, + {"Session ID", "icq.sessionid", FT_UINT32, BASE_HEX, NULL, 0x0, "", HFILL }}, { &hf_icq_cmd, - {"Command", "icq.cmd", FT_UINT16, BASE_DEC, NULL, 0x0, ""}}, + {"Command", "icq.cmd", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL }}, { &hf_icq_checkcode, - {"Checkcode", "icq.checkcode", FT_UINT32, BASE_HEX, NULL, 0x0, ""}}, + {"Checkcode", "icq.checkcode", FT_UINT32, BASE_HEX, NULL, 0x0, "", HFILL }}, { &hf_icq_decode, - {"Decode", "icq.decode", FT_STRING, BASE_NONE, NULL, 0x0, ""}} + {"Decode", "icq.decode", FT_STRING, BASE_NONE, NULL, 0x0, "", HFILL }} }; static gint *ett[] = { &ett_icq, |