aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-05-17 12:19:47 -0700
committerGuy Harris <guy@alum.mit.edu>2015-05-17 19:20:30 +0000
commit83787bb6ee4460bbc51e2d8b25533b03e94bc914 (patch)
treeb99feec102d1a2d252690c129dc5a18d95092e43 /epan
parente16d37b8d96bcaeb0f8cca60b296aa0648f5485c (diff)
Make the human-readable names the same in the preferences and the packets.
Change-Id: Ie00c81e9893412cc322cfb08e8b5b5f4e5ce47e4 Reviewed-on: https://code.wireshark.org/review/8499 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-aruba-erm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-aruba-erm.c b/epan/dissectors/packet-aruba-erm.c
index 776edce325..b242e968a2 100644
--- a/epan/dissectors/packet-aruba-erm.c
+++ b/epan/dissectors/packet-aruba-erm.c
@@ -74,8 +74,8 @@ static const value_string aruba_erm_type_vals[] = {
{ TYPE_PCAP, "pcap (type 0)" },
{ TYPE_PEEK, "peek (type 1)" },
{ TYPE_AIRMAGNET, "Airmagnet (type 2)" },
- { TYPE_PCAPPLUSRADIO, "pcap + radio (type 3)" },
- { TYPE_PPI, "ppi (type 4)" },
+ { TYPE_PCAPPLUSRADIO, "pcap + radio header (type 3)" },
+ { TYPE_PPI, "PPI (type 4)" },
{ 0, NULL }
};
void proto_register_aruba_erm(void);
@@ -239,10 +239,10 @@ proto_register_aruba_erm(void)
static const enum_val_t aruba_erm_types[] = {
{ "pcap_type_0", "pcap (type 0)", TYPE_PCAP},
- { "peek_type_1", "peek (type1)", TYPE_PEEK},
- { "airmagnet_type_2", "airmagnet (type 2)", TYPE_AIRMAGNET},
- { "pcapplusradio_type_3", "pcap+radio header (type 3)", TYPE_PCAPPLUSRADIO},
- { "ppi_type_4", "ppi (type 4)", TYPE_PPI},
+ { "peek_type_1", "peek (type 1)", TYPE_PEEK},
+ { "airmagnet_type_2", "Airmagnet (type 2)", TYPE_AIRMAGNET},
+ { "pcapplusradio_type_3", "pcap + radio header (type 3)", TYPE_PCAPPLUSRADIO},
+ { "ppi_type_4", "PPI (type 4)", TYPE_PPI},
{ NULL, NULL, -1}
};