aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tds.c
diff options
context:
space:
mode:
Diffstat (limited to 'packet-tds.c')
-rw-r--r--packet-tds.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/packet-tds.c b/packet-tds.c
index 291a4a9d34..b83f5a49bc 100644
--- a/packet-tds.c
+++ b/packet-tds.c
@@ -3,7 +3,7 @@
* Copyright 2000-2002, Brian Bruns <camber@ais.org>
* Copyright 2002, Steve Langasek <vorlon@netexpress.net>
*
- * $Id: packet-tds.c,v 1.26 2004/02/18 04:41:37 jmayer Exp $
+ * $Id: packet-tds.c,v 1.27 2004/02/20 08:40:30 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1063,6 +1063,10 @@ dissect_tds7_results_token(tvbuff_t *tvb, guint offset, proto_tree *tree)
offset += table_len*2;
}
}
+ else if (type == 106) {
+ proto_tree_add_text(tree, tvb, offset, 3, "unknown 3 bytes");
+ offset +=3;
+ }
if(type > 128) {
proto_tree_add_text(tree, tvb, offset, 2, "Large type size: 0x%x", tvb_get_letohs(tvb, offset));
offset += 2;