dvb: fix problem stopping DVB-S muxes being added on DVB v3 systems

(cherry picked from commit 23f788ff2b)
This commit is contained in:
Adam Sutton 2013-04-03 10:00:46 +01:00
parent 1f4f001641
commit 0e7c0b2984

View file

@ -1272,16 +1272,16 @@ dvb_fe_opts(th_dvb_adapter_t *tda, const char *which)
return a;
}
#if DVB_API_VERSION >= 5
if(!strcmp(which, "delsys")) {
#if DVB_API_VERSION >= 5
if(c & FE_CAN_QPSK) {
fe_opts_add(a, "SYS_DVBS", SYS_DVBS);
fe_opts_add(a, "SYS_DVBS2", SYS_DVBS2);
} else
#endif
fe_opts_add(a, "SYS_UNDEFINED", SYS_UNDEFINED);
return a;
}
#endif
if(!strcmp(which, "transmissionmodes")) {
if(c & FE_CAN_TRANSMISSION_MODE_AUTO)