Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fastscan fix for last changes
  • Loading branch information
perexg committed Dec 9, 2015
1 parent fe7ac7f commit 8577af3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/input/mpegts/mpegts_network_scan.c
Expand Up @@ -339,9 +339,9 @@ mpegts_mux_bouquet_rescan ( const char *src, const char *extra )
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;
Expand Down

0 comments on commit 8577af3

Please sign in to comment.