aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-chat.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-10-07 21:23:36 +0000
committerBill Meier <wmeier@newsguy.com>2010-10-07 21:23:36 +0000
commit695aff26f98ad7e0d386b04cfac2177bcdc58e50 (patch)
tree45866e49bb715c6c9869ea14e5da0710e1c55215 /epan/dissectors/packet-aim-chat.c
parent54ed1b0bc776a6c9f090749567110592a7fb3082 (diff)
(Minor) Rename a few variables in the global namespace to be a bit more unique;
Also: rename additional (static) variables to be consistent with the above renames. svn path=/trunk/; revision=34412
Diffstat (limited to 'epan/dissectors/packet-aim-chat.c')
-rw-r--r--epan/dissectors/packet-aim-chat.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-aim-chat.c b/epan/dissectors/packet-aim-chat.c
index 446cf2640c..c64c5b683b 100644
--- a/epan/dissectors/packet-aim-chat.c
+++ b/epan/dissectors/packet-aim-chat.c
@@ -53,7 +53,8 @@
#define AIM_CHAT_TLV_CONTAINS_USER_CLASS 0x066
#define AIM_CHAT_TLV_CONTAINS_USER_ARRAY 0x067
-static const aim_tlv chat_tlvs[] _U_ = {
+#if 0
+static const aim_tlv aim_chat_tlvs[] _U_ = {
{ AIM_CHAT_TLV_BROWSABLE_TREE, "Browsable tree", dissect_aim_tlv_value_bytes },
{ AIM_CHAT_TLV_CLASS_EXCLUSIVE, "Exclusively for class", dissect_aim_tlv_value_userclass },
{ AIM_CHAT_TLV_MAX_CONCURRENT_ROOMS, "Max. number of concurrent rooms", dissect_aim_tlv_value_uint8 },
@@ -65,6 +66,7 @@ static const aim_tlv chat_tlvs[] _U_ = {
{ AIM_CHAT_TLV_CONTAINS_USER_ARRAY, "Contains User Array", dissect_aim_tlv_value_bytes },
{ 0, NULL, NULL }
};
+#endif
/* Initialize the protocol and registered fields */
static int proto_aim_chat = -1;