aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-08-30 17:59:59 -0700
committerGuy Harris <guy@alum.mit.edu>2016-08-31 01:00:44 +0000
commit8b7444ed8fe8bf177b78a8211dc97314fd4890dd (patch)
treecb7e18613111f65ba4a7bd322b7cdee01478481f /plugins
parent6b6cf9992e8d592a58086653d5d3d58409d02311 (diff)
downloadwireshark-8b7444ed8fe8bf177b78a8211dc97314fd4890dd.tar.gz
wireshark-8b7444ed8fe8bf177b78a8211dc97314fd4890dd.tar.bz2
wireshark-8b7444ed8fe8bf177b78a8211dc97314fd4890dd.zip
Use "ecatf" as the protocol name, to parallel everything else.
The fields have names beginning with "ecatf.", the dissector is called "ecatf", and it's only the frame layer of EtherCAT anyway, so just call it "ecatf". Change-Id: I2f127363fd115c307f0525f612fe184a30d46c55 Reviewed-on: https://code.wireshark.org/review/17406 Reviewed-by: Guy Harris <guy@alum.mit.edu> (cherry picked from commit d78197955050f0ddf4a91379018f41b58923c56b) Reviewed-on: https://code.wireshark.org/review/17407
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ethercat/packet-ethercat-frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ethercat/packet-ethercat-frame.c b/plugins/ethercat/packet-ethercat-frame.c
index 1db5599d75..b9f01d03f1 100644
--- a/plugins/ethercat/packet-ethercat-frame.c
+++ b/plugins/ethercat/packet-ethercat-frame.c
@@ -130,7 +130,7 @@ void proto_register_ethercat_frame(void)
};
proto_ethercat_frame = proto_register_protocol("EtherCAT frame header",
- "ETHERCAT","ethercat");
+ "ETHERCAT","ecatf");
proto_register_field_array(proto_ethercat_frame,hf,array_length(hf));
proto_register_subtree_array(ett, array_length(ett));