aboutsummaryrefslogtreecommitdiffstats
path: root/packet-radius.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-18 02:18:27 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-18 02:18:27 +0000
commitecadcda85dc61d927369fbc4a808f4b5767239d6 (patch)
tree90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-radius.c
parent89bc50802cc54053da815c4e153b4a8c924a8c61 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3561 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-radius.c')
-rw-r--r--packet-radius.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-radius.c b/packet-radius.c
index cf423bfaba..432baadc23 100644
--- a/packet-radius.c
+++ b/packet-radius.c
@@ -2,7 +2,7 @@
* Routines for RADIUS packet disassembly
* Copyright 1999 Johan Feyaerts
*
- * $Id: packet-radius.c,v 1.30 2001/06/14 08:23:50 guy Exp $
+ * $Id: packet-radius.c,v 1.31 2001/06/18 02:17:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -748,15 +748,15 @@ proto_register_radius(void)
static hf_register_info hf[] = {
{ &hf_radius_code,
{ "Code","radius.code", FT_UINT8, BASE_DEC, VALS(radius_vals), 0x0,
- "" }},
+ "", HFILL }},
{ &hf_radius_id,
{ "Identifier", "radius.id", FT_UINT8, BASE_DEC, NULL, 0x0,
- "" }},
+ "", HFILL }},
{ &hf_radius_length,
{ "Length","radius.length", FT_UINT16, BASE_DEC, NULL, 0x0,
- "" }}
+ "", HFILL }}
};
static gint *ett[] = {
&ett_radius,