aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-icq.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-17 08:13:02 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-17 08:13:02 +0000
commit8702ab7b2528768806c3a5004cda30d604af6536 (patch)
tree716bf71eb509f2fcc2385779a945abe92d9dce02 /epan/dissectors/packet-aim-icq.c
parent0a4f555b4d51c1b52660aed6ed571ed055810d15 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13084 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-aim-icq.c')
-rw-r--r--epan/dissectors/packet-aim-icq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-aim-icq.c b/epan/dissectors/packet-aim-icq.c
index 0a1a9ba9a4..e4cb11756c 100644
--- a/epan/dissectors/packet-aim-icq.c
+++ b/epan/dissectors/packet-aim-icq.c
@@ -66,7 +66,7 @@ static int dissect_aim_tlv_value_icq(proto_item *ti, guint16 subtype, tvbuff_t *
static const aim_tlv icq_tlv[] = {
{ TLV_ICQ_META_DATA, "Encapsulated ICQ Meta Data", dissect_aim_tlv_value_icq },
- { 0, "Unknown", NULL },
+ { 0, NULL, NULL },
};
/* Initialize the protocol and registered fields */