From: Lars Op den Kamp Date: Thu, 11 Oct 2012 13:13:53 +0000 (+0200) Subject: fixed - typo in CVLCommandHandler::VendorPreActivateSourceHook. bugzid: 1087 X-Git-Tag: upstream/2.2.0~1^2~15^2^2~2 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=277dfbd833c9e1d70597f46e94a3be19fe914cd4 fixed - typo in CVLCommandHandler::VendorPreActivateSourceHook. bugzid: 1087 --- diff --git a/src/lib/implementations/VLCommandHandler.cpp b/src/lib/implementations/VLCommandHandler.cpp index 07f2f25..90e8777 100644 --- a/src/lib/implementations/VLCommandHandler.cpp +++ b/src/lib/implementations/VLCommandHandler.cpp @@ -213,7 +213,7 @@ void CVLCommandHandler::VendorPreActivateSourceHook(void) bool bTransmit(false); { CLockObject lock(m_mutex); - bTransmit = m_bCapabilitiesSent; + bTransmit = !m_bCapabilitiesSent; } if (bTransmit) SendVendorCommandCapabilities(m_processor->GetLogicalAddress(), CECDEVICE_TV);