Commit e9d39756 authored by Christophe Massiot's avatar Christophe Massiot

* dvb.c: More fixes for people who like typing invalid values.

parent 465e3f10
...@@ -473,7 +473,7 @@ static int FrontendDoDiseqc(void) ...@@ -473,7 +473,7 @@ static int FrontendDoDiseqc(void)
} }
msleep(100000); /* Again, should be 15 ms */ msleep(100000); /* Again, should be 15 ms */
} }
else if ( i_satnum > 0xA ) else if ( i_satnum == 0xA || i_satnum == 0xB )
{ {
/* A or B simple diseqc ("diseqc-compatible") */ /* A or B simple diseqc ("diseqc-compatible") */
if( ioctl( i_frontend, FE_DISEQC_SEND_BURST, if( ioctl( i_frontend, FE_DISEQC_SEND_BURST,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment