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-nntp.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-nntp.c')
-rw-r--r-- | packet-nntp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-nntp.c b/packet-nntp.c index 3036d1ae2f..add8a14149 100644 --- a/packet-nntp.c +++ b/packet-nntp.c @@ -2,7 +2,7 @@ * Routines for nntp packet dissection * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com> * - * $Id: packet-nntp.c,v 1.19 2001/01/22 08:03:45 guy Exp $ + * $Id: packet-nntp.c,v 1.20 2001/06/18 02:17:50 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -127,12 +127,12 @@ proto_register_nntp(void) { &hf_nntp_response, { "Response", "nntp.response", FT_BOOLEAN, BASE_NONE, NULL, 0x0, - "TRUE if NNTP response" }}, + "TRUE if NNTP response", HFILL }}, { &hf_nntp_request, { "Request", "nntp.request", FT_BOOLEAN, BASE_NONE, NULL, 0x0, - "TRUE if NNTP request" }} + "TRUE if NNTP request", HFILL }} }; static gint *ett[] = { &ett_nntp, |