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>
This commit is contained in:
Guy Harris 2015-05-17 12:19:47 -07:00
parent e16d37b8d9
commit 83787bb6ee
1 changed files with 6 additions and 6 deletions

View File

@ -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}
};