aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-popup.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-popup.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-popup.c')
-rw-r--r--epan/dissectors/packet-aim-popup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-aim-popup.c b/epan/dissectors/packet-aim-popup.c
index 38acf2b891..d00fc677b7 100644
--- a/epan/dissectors/packet-aim-popup.c
+++ b/epan/dissectors/packet-aim-popup.c
@@ -47,7 +47,7 @@
#define AIM_POPUP_TLV_WINDOW_HEIGHT 0x004
#define AIM_POPUP_TLV_AUTOHIDE_DELAY 0x005
-const aim_tlv popup_tlvs[] = {
+static const aim_tlv aim_popup_tlvs[] = {
{ AIM_POPUP_TLV_MESSAGE_TEXT, "Message text (html)", dissect_aim_tlv_value_string },
{ AIM_POPUP_TLV_URL_STRING, "URL string", dissect_aim_tlv_value_string },
{ AIM_POPUP_TLV_WINDOW_WIDTH, "Window Width (pixels)", dissect_aim_tlv_value_uint16 },
@@ -64,7 +64,7 @@ static gint ett_aim_popup = -1;
static int dissect_aim_popup(tvbuff_t *tvb, packet_info *pinfo, proto_tree *popup_tree)
{
- return dissect_aim_tlv(tvb, pinfo, 0, popup_tree, popup_tlvs);
+ return dissect_aim_tlv(tvb, pinfo, 0, popup_tree, aim_popup_tlvs);
}
static const aim_subtype aim_fnac_family_popup[] = {