scan_setup: fix build without ENABLE_FASTSCAN

Origin commit data
------------------
Commit: b53c1d1bd6
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2014-04-27 (Sun, 27 Apr 2014)
This commit is contained in:
Stefan Seyfried
2014-04-27 19:33:03 +02:00
committed by vanhofen
parent 4f57f066d9
commit 9774fc804e

View File

@@ -309,7 +309,11 @@ int CScanSetup::exec(CMenuTarget* parent, const std::string &actionKey)
}
if (actionKey == "fastdiseqc") {
printf("[neutrino] CScanSetup::%s: showFastscanDiseqcSetup()\n", __FUNCTION__);
#ifdef ENABLE_FASTSCAN
return showFastscanDiseqcSetup();
#else
return res;
#endif
}
std::string scants_key[] = {"all", "manual", "test", "fast", "auto"/*doesn't exists in CScanTs!*/};