From a68fe4215a59ed3acae95613ec3264a9545c59e2 Mon Sep 17 00:00:00 2001 From: BPanther Date: Sat, 28 Dec 2024 23:20:18 +0100 Subject: [PATCH] vuall: small fix bcm3466 Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/ff14fd96bb1d0c754bc8ccad9d3c9e7cb59a096e Author: BPanther Date: 2024-12-28 (Sat, 28 Dec 2024) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/zapit/src/frontend.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/zapit/src/frontend.cpp b/src/zapit/src/frontend.cpp index 77fe44010..07232a139 100644 --- a/src/zapit/src/frontend.cpp +++ b/src/zapit/src/frontend.cpp @@ -246,8 +246,11 @@ void CFrontend::getFEInfo(void) #if BOXMODEL_VUPLUS_ALL sprintf(info.name,"%s", line.substr(line.find_first_of(":") + 9).c_str()); // no hybrid for BCM3466 T2 tuner - if (!strncmp(line.substr(line.find_first_of("(") + 1).c_str(), "BCM3466)", 5)) + if (!strncmp(line.substr(line.find_first_of("(") + 1).c_str(), "BCM3466)", 8)) + { found = false; + deliverySystemMask |= DVB_T2; + } #else std::string tmp = info.name; sprintf(info.name,"%s (%s)", tmp.c_str(), line.substr(line.find_first_of(":") + 2).c_str());