aboutsummaryrefslogtreecommitdiffstats
path: root/packet-spray.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-18 02:18:27 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-18 02:18:27 +0000
commit84123931970a8a0f1af281e7351eadabba3c0908 (patch)
tree90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-spray.c
parentb9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff)
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-spray.c')
-rw-r--r--packet-spray.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet-spray.c b/packet-spray.c
index 8a74bb9798..dc1a1f53c3 100644
--- a/packet-spray.c
+++ b/packet-spray.c
@@ -1,7 +1,7 @@
/* packet-spray.c
* 2001 Ronnie Sahlberg <rsahlber@bigpond.net.au>
*
- * $Id: packet-spray.c,v 1.4 2001/06/12 06:31:14 guy Exp $
+ * $Id: packet-spray.c,v 1.5 2001/06/18 02:17:53 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -98,23 +98,23 @@ proto_register_spray(void)
static hf_register_info hf[] = {
{ &hf_spray_sprayarr, {
"Data", "spray.sprayarr", FT_BYTES, BASE_DEC,
- NULL, 0, "Sprayarr data" }},
+ NULL, 0, "Sprayarr data", HFILL }},
{ &hf_spray_counter, {
"counter", "spray.counter", FT_UINT32, BASE_DEC,
- NULL, 0, "Counter" }},
+ NULL, 0, "Counter", HFILL }},
{ &hf_spray_clock, {
"clock", "spray.clock", FT_NONE, BASE_NONE,
- NULL, 0, "Clock" }},
+ NULL, 0, "Clock", HFILL }},
{ &hf_spray_sec, {
"sec", "spray.sec", FT_UINT32, BASE_DEC,
- NULL, 0, "Seconds" }},
+ NULL, 0, "Seconds", HFILL }},
{ &hf_spray_usec, {
"usec", "spray.usec", FT_UINT32, BASE_DEC,
- NULL, 0, "Microseconds" }},
+ NULL, 0, "Microseconds", HFILL }},
};