From 305500533ee1524692ceaf3cb5f38d24225c5920 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Sat, 19 Nov 2011 02:18:51 +0100 Subject: [PATCH] cec: use the correct source address in CSLCommandHandler::HandleVendorCommand() --- src/lib/implementations/SLCommandHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/implementations/SLCommandHandler.cpp b/src/lib/implementations/SLCommandHandler.cpp index 1857ca9..40c0066 100644 --- a/src/lib/implementations/SLCommandHandler.cpp +++ b/src/lib/implementations/SLCommandHandler.cpp @@ -48,7 +48,7 @@ bool CSLCommandHandler::HandleVendorCommand(const cec_command &command) { /* enable SL */ cec_command response; - cec_command::Format(response, m_busDevice->GetLogicalAddress(), command.initiator, CEC_OPCODE_VENDOR_COMMAND); + cec_command::Format(response, command.destination, command.initiator, CEC_OPCODE_VENDOR_COMMAND); response.PushBack(0x02); response.PushBack(0x05); -- 2.34.1