mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
src/zapit/src/femanager.cpp: Fix compile error
Origin commit data
------------------
Commit: aaa7b41d0b
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2017-04-24 (Mon, 24 Apr 2017)
This commit is contained in:
@@ -371,7 +371,9 @@ void CFEManager::saveSettings(bool write)
|
||||
void CFEManager::copySettings(CFrontend * from, CFrontend * to)
|
||||
{
|
||||
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.diseqcRepeats = from->config.diseqcRepeats;
|
||||
|
Reference in New Issue
Block a user