From 642c5ca59edcf5e6f7d2009dde3003c258018178 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Mon, 6 Jul 2026 20:43:51 -0700 Subject: [PATCH] fixup lua tables --- scripts/packet-analysis/avclan_plugin.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/packet-analysis/avclan_plugin.lua b/scripts/packet-analysis/avclan_plugin.lua index 0a9c7b1..784be7a 100644 --- a/scripts/packet-analysis/avclan_plugin.lua +++ b/scripts/packet-analysis/avclan_plugin.lua @@ -957,10 +957,10 @@ end local device_decoders = { [known_devices_names["TUNER"]] = decode_radio, [known_devices_names["AUDIO_AMP"]] = decode_amp, - [known_devices_names["CD"]] = decode_cd, + [known_devices_names["CD_SINGLE"]] = decode_cd, [known_devices_names["CD_CHANGER"]] = decode_cd, [known_devices_names["TAPE_DECK"]] = decode_tape, - [known_devices_names["SW"]] = decode_touch, + [known_devices_names["SW_AUDIO"]] = decode_touch, } function avclanproto.dissector(buffer, pinfo, tree)