aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isobus-vt.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-isobus-vt.c')
-rw-r--r--epan/dissectors/packet-isobus-vt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-isobus-vt.c b/epan/dissectors/packet-isobus-vt.c
index 77c2910185..0be6425668 100644
--- a/epan/dissectors/packet-isobus-vt.c
+++ b/epan/dissectors/packet-isobus-vt.c
@@ -1956,7 +1956,8 @@ dissect_vt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, enum vt_directio
proto_item_append_text(ti, ": ");
if (error_codes & 0x01)
proto_item_append_text(ti, "Audio device is busy, subsequent commands use the new setting ");
- if (error_codes & 0x01)
+ /* TODO: Haven't confirmed this bit against spec, but was previously wrongly also 0x01 */
+ if (error_codes & 0x02)
proto_item_append_text(ti, "Command is not supported ");
if (error_codes & 0x10)
proto_item_append_text(ti, "Any other error ");