aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-erf.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-12 02:42:33 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-12 02:42:33 +0000
commit9b8272238b528bc487cf462b6e05d554d74774b5 (patch)
treea11c7b897f72120e0e66adb7cdc12d469d1761c7 /epan/dissectors/packet-erf.c
parent0aa4ec95f636d4e2107087350b71a10e5a702195 (diff)
Rename the preference values to something that leaves out the "eth" (as
it's redundant). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25720 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-erf.c')
-rw-r--r--epan/dissectors/packet-erf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-erf.c b/epan/dissectors/packet-erf.c
index 3e7f4fe684..5ceeb52b68 100644
--- a/epan/dissectors/packet-erf.c
+++ b/epan/dissectors/packet-erf.c
@@ -906,9 +906,9 @@ proto_register_erf(void)
};
static enum_val_t erf_ethfcs_options[] = {
- { "ethfcs", "Present", ERF_ETHFCS_YES },
- { "ethnofcs", "Not present", ERF_ETHFCS_NO },
- { "eth", "Possibly present", ERF_ETHFCS_MAYBE },
+ { "fcs", "Present", ERF_ETHFCS_YES },
+ { "nofcs", "Not present", ERF_ETHFCS_NO },
+ { "maybefcs", "Possibly present", ERF_ETHFCS_MAYBE },
{ NULL, NULL, 0 }
};