Add a missing line of code: Fixes Coverity 967 [UNUSED].
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 23 May 2011 14:13:03 +0000 (14:13 +0000)
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 23 May 2011 14:13:03 +0000 (14:13 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37358 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-mikey.c

index 005f6b00710f25ed96733844518c20eb0b5bd2d5..42f1fadd3e46d6ea5b823fff71554ca32c99d61d 100644 (file)
@@ -852,6 +852,7 @@ dissect_payload_t(mikey_t *mikey _U_, tvbuff_t *tvb, packet_info *pinfo _U_, pro
 
        if (tree) {
                parent = proto_tree_get_parent(tree);
+               proto_item_append_text(parent, " Type: %s", val_to_str(ts_type, ts_type_vals, "Unknown"));
                proto_tree_add_item(tree, hf_mikey[POS_TS_TYPE], tvb, offset+1, 1, FALSE);
        }