aboutsummaryrefslogtreecommitdiffstats
path: root/process-x11-fields.pl
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 /process-x11-fields.pl
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 'process-x11-fields.pl')
-rw-r--r--process-x11-fields.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/process-x11-fields.pl b/process-x11-fields.pl
index 4408b4cc0f..25b4a9f834 100644
--- a/process-x11-fields.pl
+++ b/process-x11-fields.pl
@@ -6,7 +6,7 @@
#
# Copyright 2000, Christophe Tronche <ch.tronche@computer.org>
#
-# $Id: process-x11-fields.pl,v 1.4 2001/04/21 08:04:43 guy Exp $
+# $Id: process-x11-fields.pl,v 1.5 2001/06/18 02:17:58 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@@ -122,6 +122,6 @@ while(<>) {
print DECL "static int hf_x11_$variable = -1;\n";
print REG <<END;
-{ &hf_x11_$variable, { "$abbrev", "x11.$field", FT_$type, $fieldDisplay, $fieldStrings, $mask, "$longName" } },
+{ &hf_x11_$variable, { "$abbrev", "x11.$field", FT_$type, $fieldDisplay, $fieldStrings, $mask, "$longName", HFILL }},
END
}