https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7348
Jakub Zawadzki <darkjames-ws@xxxxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |darkjames-ws@xxxxxxxxxxxx
--- Comment #3 from Jakub Zawadzki <darkjames-ws@xxxxxxxxxxxx> 2012-06-12 03:53:51 PDT ---
> ziop (Zipped Inter-ORB Protocol)
> zrtp (ZRTP)
> collectd (collectd network data)
> isns (iSNS)
> sflow (InMon sFlow)
> tetra (TETRA Protocol)
>
> Nothing sticks out to me as to why the last four are treated differently.
Probably because display_dissector_names() [tshark.c] is using filter name, and
not short name like in your patch.
And cause short names are usually written in capital:
proto_register_protocol("ZRTP", "ZRTP", "zrtp");
proto_register_protocol("Zipped Inter-ORB Protocol", "ZIOP", "ziop");
protocol with lowercase/mixed short names:
proto_register_protocol("TETRA Protocol", "tetra", "tetra");
proto_register_protocol("InMon sFlow", "sFlow", "sflow");
proto_register_protocol("collectd network data", "collectd", "collectd");
are at end.
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.