aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-bos.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-01-17 08:13:02 +0000
committerGuy Harris <guy@alum.mit.edu>2005-01-17 08:13:02 +0000
commit3778ca99c125a24b6142b09e3a72ed37328fe03f (patch)
tree716bf71eb509f2fcc2385779a945abe92d9dce02 /epan/dissectors/packet-aim-bos.c
parent6d5fa899962e73edfd64f37223871a03f9124717 (diff)
If a given TLV type isn't found in an aim_tlv table, just use "Unknown"
as the description - some aim_tlv tables have NULL in the end-of-table entry. For those that don't, replace "Unknown" with NULL; "Unknown" is now redundant. svn path=/trunk/; revision=13084
Diffstat (limited to 'epan/dissectors/packet-aim-bos.c')
-rw-r--r--epan/dissectors/packet-aim-bos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-aim-bos.c b/epan/dissectors/packet-aim-bos.c
index bab1b54300..ff52f15d41 100644
--- a/epan/dissectors/packet-aim-bos.c
+++ b/epan/dissectors/packet-aim-bos.c
@@ -62,7 +62,7 @@
static const aim_tlv 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, "Unknown", NULL },
+ { 0, NULL, NULL },
};
/* Initialize the protocol and registered fields */