diff options
author | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2011-12-14 21:13:06 +0000 |
---|---|---|
committer | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2011-12-14 21:13:06 +0000 |
commit | 0a1072b08333167bc0955cedfb1997621d336d4b (patch) | |
tree | 884b95a372bc6a4e46c058086bb32458bc0d661b /epan/expert.c | |
parent | 586ea8d092d70b7ffa3ffa7c3ddc26a75aa60ee7 (diff) | |
download | wireshark-0a1072b08333167bc0955cedfb1997621d336d4b.tar.gz wireshark-0a1072b08333167bc0955cedfb1997621d336d4b.tar.bz2 wireshark-0a1072b08333167bc0955cedfb1997621d336d4b.zip |
Treat expert info as a <field> instead of a <proto> when exporting to pdml.
svn path=/trunk/; revision=40204
Diffstat (limited to 'epan/expert.c')
-rw-r--r-- | epan/expert.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/expert.c b/epan/expert.c index cc737ec897..c549e86f39 100644 --- a/epan/expert.c +++ b/epan/expert.c @@ -34,9 +34,12 @@ #include "tap.h" +/* proto_expert cannot be static because it's referenced in the + * print routines + */ +int proto_expert = -1; static int expert_tap = -1; -static int proto_expert = -1; static int highest_severity = 0; static int ett_expert = -1; |