https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5986
--- Comment #4 from Anders Broman <anders.broman@xxxxxxxxxxxx> 2011-06-04 06:39:20 PDT ---
Hi,
If the FIELDNAME matches the FIELDDESCR. FIELDDESCR is redundant and
should be replcaed by NULL.
Please change the rest of the hf declarations in a siimilar way from:
+        {&hf_cflow_packets_dropped,
+         {"Packets Dropped",
+          "cflow.packets_dropped",
+          FT_UINT32, BASE_DEC, NULL, 0x0,
+          "Packets Dropped", HFILL}
+        },
to:
+        {&hf_cflow_packets_dropped,
+         {"Packets Dropped",
+          "cflow.packets_dropped",
+          FT_UINT32, BASE_DEC, NULL, 0x0,
+          NULL, HFILL}
+        },
Regards
Anders
-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.