Again, command values are in decimal, not hex, in DEC's LAT spec.

Change-Id: I693eabbba3f9140bccb9a5e490633ba139f13193
Reviewed-on: https://code.wireshark.org/review/13129
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-01-08 02:51:43 -08:00
parent 8e49f590bf
commit 895d07f7be
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ dissect_lat(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
command = tvb_get_guint8(tvb, offset) >> 2;
col_add_fstr(pinfo->cinfo, COL_INFO, "%s",
val_to_str(command, command_vals, "Unknown command (%02x)"));
val_to_str(command, command_vals, "Unknown command (%u)"));
if (tree) {
ti = proto_tree_add_item(tree, proto_lat, tvb, offset, -1,