aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iso7816.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-06-03 20:35:53 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-06-03 20:35:53 +0000
commita5bfcbf2a94a07f50e386e282ef0b935cfe7f72d (patch)
tree00704a6085010446b7de42a38b764d0dc5d9e13d /epan/dissectors/packet-iso7816.c
parent27872a9324d20d7b2ffd467ee81c4980d2cbb8a6 (diff)
rename expert module to expert_iso7816
remove unnecessary comma svn path=/trunk/; revision=49728
Diffstat (limited to 'epan/dissectors/packet-iso7816.c')
-rw-r--r--epan/dissectors/packet-iso7816.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-iso7816.c b/epan/dissectors/packet-iso7816.c
index 354b98b18a..cc1013b88b 100644
--- a/epan/dissectors/packet-iso7816.c
+++ b/epan/dissectors/packet-iso7816.c
@@ -832,17 +832,17 @@ proto_register_iso7816(void)
};
static ei_register_info ei[] = {
- { &ie_iso7816_atr_tck_not1, { "iso7816.atr_tck.not1", PI_PROTOCOL, PI_WARN, "TCK byte must either be absent or exactly one byte", EXPFILL }},
+ { &ie_iso7816_atr_tck_not1, { "iso7816.atr.tck.not1", PI_PROTOCOL, PI_WARN, "TCK byte must either be absent or exactly one byte", EXPFILL }}
};
- expert_module_t* expert_arp;
+ expert_module_t* expert_iso7816;
proto_iso7816 = proto_register_protocol(
"ISO/IEC 7816", "ISO 7816", "iso7816");
proto_register_field_array(proto_iso7816, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
- expert_arp = expert_register_protocol(proto_iso7816);
- expert_register_field_array(expert_arp, ei, array_length(ei));
+ expert_iso7816 = expert_register_protocol(proto_iso7816);
+ expert_register_field_array(expert_iso7816, ei, array_length(ei));
new_register_dissector("iso7816", dissect_iso7816, proto_iso7816);
register_init_routine(iso7816_init);