summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-hci_h4.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-07-13 17:43:44 +0000
committerGuy Harris <guy@alum.mit.edu>2009-07-13 17:43:44 +0000
commitb0a612c56d6d5f4762465ae715f5ed5da02dd03e (patch)
tree01d978d6456f669e387beddb74dc304df1bbd671 /epan/dissectors/packet-hci_h4.c
parentbe27e0d5b4e0e749ca0d6fc67d3da5956d1889e9 (diff)
downloadwireshark-b0a612c56d6d5f4762465ae715f5ed5da02dd03e.tar.gz
Note what the "Unknown" value is.
svn path=/trunk/; revision=29084
Diffstat (limited to 'epan/dissectors/packet-hci_h4.c')
-rw-r--r--epan/dissectors/packet-hci_h4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-hci_h4.c b/epan/dissectors/packet-hci_h4.c
index 352e16f7a5..3a409a6a94 100644
--- a/epan/dissectors/packet-hci_h4.c
+++ b/epan/dissectors/packet-hci_h4.c
@@ -88,7 +88,7 @@ dissect_hci_h4(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if(!dissector_try_port(hci_h4_table, type, next_tvb, pinfo, tree)) {
col_add_fstr(pinfo->cinfo, COL_INFO, "%s %s",
pinfo->p2p_dir==P2P_DIR_SENT ? "Sent" : "Rcvd",
- val_to_str(type, hci_h4_type_vals, "Unknown 0x%02x"));
+ val_to_str(type, hci_h4_type_vals, "Unknown HCI packet type 0x%02x"));
call_dissector(data_handle, next_tvb, pinfo, tree);
}