mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
src/zapit/src/femanager.cpp: Fix compile error
This commit is contained in:
@@ -371,7 +371,9 @@ void CFEManager::saveSettings(bool write)
|
|||||||
void CFEManager::copySettings(CFrontend * from, CFrontend * to)
|
void CFEManager::copySettings(CFrontend * from, CFrontend * to)
|
||||||
{
|
{
|
||||||
INFO("Copy settings fe %d -> fe %d", from->fenumber, to->fenumber);
|
INFO("Copy settings fe %d -> fe %d", from->fenumber, to->fenumber);
|
||||||
if (to->config.diseqcType != DISEQC_UNICABLE || to->config.diseqcType != DISEQC_UNICABLE2 || to->getMode() == CFrontend::FE_MODE_LINK_LOOP)
|
if ((to->config.diseqcType != DISEQC_UNICABLE &&
|
||||||
|
to->config.diseqcType != DISEQC_UNICABLE2) ||
|
||||||
|
to->getMode() == CFrontend::FE_MODE_LINK_LOOP)
|
||||||
to->config.diseqcType = from->config.diseqcType;
|
to->config.diseqcType = from->config.diseqcType;
|
||||||
|
|
||||||
to->config.diseqcRepeats = from->config.diseqcRepeats;
|
to->config.diseqcRepeats = from->config.diseqcRepeats;
|
||||||
|
Reference in New Issue
Block a user