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-syslog.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-syslog.c')
-rw-r--r-- | packet-syslog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-syslog.c b/packet-syslog.c index dba6252a6e..c6767078b7 100644 --- a/packet-syslog.c +++ b/packet-syslog.c @@ -3,7 +3,7 @@ * * Copyright 2000, Gerald Combs <gerald@zing.org> * - * $Id: packet-syslog.c,v 1.10 2001/01/25 06:14:14 guy Exp $ + * $Id: packet-syslog.c,v 1.11 2001/06/18 02:17:53 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -218,17 +218,17 @@ void proto_register_syslog(void) { &hf_syslog_facility, { "Facility", "syslog.facility", FT_UINT8, BASE_DEC, VALS(long_fac), FACILITY_MASK, - "Message facility" } + "Message facility", HFILL } }, { &hf_syslog_level, { "Level", "syslog.level", FT_UINT8, BASE_DEC, VALS(long_lev), PRIORITY_MASK, - "Message level" } + "Message level", HFILL } }, { &hf_syslog_msg_len, { "Message length", "syslog.msg_len", FT_UINT32, BASE_DEC, NULL, 0x0, - "Message length, excluding priority descriptor" } + "Message length, excluding priority descriptor", HFILL } }, }; |