aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rfid-mifare.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-11-06 20:20:14 +0000
committerGuy Harris <guy@alum.mit.edu>2011-11-06 20:20:14 +0000
commit3f6175ac2ff3853ccb675a0afe32b81877dbcc24 (patch)
tree6c3e7d3331f7675c1b82de984daec649637cfeb4 /epan/dissectors/packet-rfid-mifare.c
parentb7e21381aeac7c767e97899d51e9ac8d410f88bc (diff)
Attempt to fix the RCS ID.
NULL out blurbs that just give the field name. This is C code, so it shouldn't be executable; get rid of svn:executable. svn path=/trunk/; revision=39747
Diffstat (limited to 'epan/dissectors/packet-rfid-mifare.c')
-rw-r--r--[-rwxr-xr-x]epan/dissectors/packet-rfid-mifare.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-rfid-mifare.c b/epan/dissectors/packet-rfid-mifare.c
index 3c2251b9dc..cb5c12884d 100755..100644
--- a/epan/dissectors/packet-rfid-mifare.c
+++ b/epan/dissectors/packet-rfid-mifare.c
@@ -8,7 +8,7 @@
*
* Copyright 2011, Tyson Key <tyson.key@gmail.com>
*
- * $Id
+ * $Id$
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
@@ -193,22 +193,22 @@ proto_register_mifare(void)
{&hf_mifare_command,
{ "Command", "mifare.cmd", FT_UINT8, BASE_HEX,
- VALS(hf_mifare_commands), 0x0, "Command", HFILL }},
+ VALS(hf_mifare_commands), 0x0, NULL, HFILL }},
{&hf_mifare_block_address,
{ "Block Address", "mifare.block.addr", FT_UINT8, BASE_DEC,
- NULL, 0x0, "Block Address", HFILL }},
+ NULL, 0x0, NULL, HFILL }},
{&hf_mifare_key_a,
{ "Key A", "mifare.key.a", FT_UINT64, BASE_HEX,
- NULL, 0x0, "Key A", HFILL }},
+ NULL, 0x0, NULL, HFILL }},
{&hf_mifare_key_b,
{ "Key B", "mifare.key.b", FT_UINT64, BASE_HEX,
- NULL, 0x0, "Key B", HFILL }},
+ NULL, 0x0, NULL, HFILL }},
{&hf_mifare_uid,
{ "UID", "mifare.uid", FT_UINT32, BASE_HEX,
- NULL, 0x0, "UID", HFILL }},
+ NULL, 0x0, NULL, HFILL }},
{&hf_mifare_operand,
{ "Operand", "mifare.operand", FT_INT32, BASE_DEC,
- NULL, 0x0, "Operand", HFILL }}
+ NULL, 0x0, NULL, HFILL }}
};
static gint *ett[] = {