From: Jaroslav Kysela Date: Wed, 9 Dec 2015 21:12:51 +0000 (+0100) Subject: fastscan fix for last changes X-Git-Tag: v4.2.1~1324 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8577af34266654c8d62705bfdcef7361e64d6bb6;p=thirdparty%2Ftvheadend.git fastscan fix for last changes --- diff --git a/src/input/mpegts/mpegts_network_scan.c b/src/input/mpegts/mpegts_network_scan.c index 5e05bac4f..3ec575a5d 100644 --- a/src/input/mpegts/mpegts_network_scan.c +++ b/src/input/mpegts/mpegts_network_scan.c @@ -339,9 +339,9 @@ tsid_lookup: pol[1] = '\0'; src += l; - if ((l = startswith(src, "DVBS2,")) > 0) + if ((l = startswith(src, "DVBS2,")) > 0 || (l = startswith(src, "DVBS-2,")) > 0) dvbs2 = 1; - else if ((l = startswith(src, "DVBS,")) > 0) + else if ((l = startswith(src, "DVBS,")) > 0 || (l = startswith(src, "DVB-S,")) > 0) dvbs2 = 0; else return;