aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-bos.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-bos.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-bos.c')
-rw-r--r--epan/dissectors/packet-aim-bos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-aim-bos.c b/epan/dissectors/packet-aim-bos.c
index 82c9ba6b0e..418b76fdc0 100644
--- a/epan/dissectors/packet-aim-bos.c
+++ b/epan/dissectors/packet-aim-bos.c
@@ -57,7 +57,7 @@
#define AIM_PRIVACY_TLV_MAX_VISIB_LIST_SIZE 0x001
#define AIM_PRIVACY_TLV_MAX_INVISIB_LIST_SIZE 0x002
-static const aim_tlv privacy_tlvs[] = {
+static const aim_tlv aim_privacy_tlvs[] = {
{ AIM_PRIVACY_TLV_MAX_VISIB_LIST_SIZE, "Max visible list size", dissect_aim_tlv_value_uint16 },
{ AIM_PRIVACY_TLV_MAX_INVISIB_LIST_SIZE, "Max invisible list size", dissect_aim_tlv_value_uint16 },
{ 0, NULL, NULL },
@@ -81,7 +81,7 @@ static int dissect_aim_bos_set_group_perm(tvbuff_t *tvb, packet_info *pinfo _U_,
static int dissect_aim_bos_rights(tvbuff_t *tvb, packet_info *pinfo, proto_tree *bos_tree)
{
- return dissect_aim_tlv_sequence(tvb, pinfo, 0, bos_tree, privacy_tlvs);
+ return dissect_aim_tlv_sequence(tvb, pinfo, 0, bos_tree, aim_privacy_tlvs);
}
static int dissect_aim_bos_buddyname(tvbuff_t *tvb, packet_info *pinfo, proto_tree *bos_tree)