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-irc.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-irc.c')
-rw-r--r-- | packet-irc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-irc.c b/packet-irc.c index 8a09ac5ffd..2a4b821a96 100644 --- a/packet-irc.c +++ b/packet-irc.c @@ -1,7 +1,7 @@ /* packet-irc.c * Routines for IRC packet dissection * - * $Id: packet-irc.c,v 1.13 2001/02/03 08:07:04 guy Exp $ + * $Id: packet-irc.c,v 1.14 2001/06/18 02:17:47 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -140,17 +140,17 @@ proto_register_irc(void) { &hf_irc_response, { "Response", "irc.response", FT_BOOLEAN, BASE_NONE, NULL, 0x0, - "TRUE if IRC response" }}, + "TRUE if IRC response", HFILL }}, { &hf_irc_request, { "Request", "irc.request", FT_BOOLEAN, BASE_NONE, NULL, 0x0, - "TRUE if IRC request" }}, + "TRUE if IRC request", HFILL }}, { &hf_irc_command, { "Command", "irc.command", FT_STRING, BASE_NONE, NULL, 0x0, - "Command associated with request" }} + "Command associated with request", HFILL }} }; static gint *ett[] = { |