aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zbee-zdp.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-07-29 11:29:53 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-07-29 11:29:53 +0000
commite7b07750cccb9625e27c708521149224eee746a8 (patch)
tree68b4628ee7aecbf619d7e3004f9b31463598a239 /epan/dissectors/packet-zbee-zdp.c
parent175ab03f38bc81c4f9a7a69536bed136f5cbb18d (diff)
zigbee cluster dissector,
modified from entry in bug 3765 so it compiles cleanly git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29232 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-zbee-zdp.c')
-rw-r--r--epan/dissectors/packet-zbee-zdp.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/epan/dissectors/packet-zbee-zdp.c b/epan/dissectors/packet-zbee-zdp.c
index e6969cf4fa..3193886437 100644
--- a/epan/dissectors/packet-zbee-zdp.c
+++ b/epan/dissectors/packet-zbee-zdp.c
@@ -1096,7 +1096,12 @@ dissect_zbee_zdp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_root = proto_tree_add_protocol_format(tree, proto_zbee_zdp, tvb, offset, tvb_length(tvb), "ZigBee Device Profile");
zdp_tree = proto_item_add_subtree(proto_root, ett_zbee_zdp);
}
-
+#if 0
+ /* Overwrite the protocol column */
+ if (check_col(pinfo->cinfo, COL_PROTOCOL)) {
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "ZigBee ZDP");
+ }
+#endif
/* Get and display the sequence number. */
seqno = tvb_get_guint8(tvb, offset);
if (tree) {