Commit 237a8e6f authored by Christophe Massiot's avatar Christophe Massiot

* modules/access/dvb/linux_dvb.c: Fixed support of Nexus-S, patch courtesy

   of Michael Ditum.
parent 19a6aa8f
......@@ -1164,7 +1164,7 @@ int E_(CAMOpen)( access_t *p_access )
}
if ( ioctl( p_sys->i_ca_handle, CA_GET_CAP, &caps ) != 0
|| caps.slot_num == 0 || caps.slot_type != CA_CI_LINK )
|| caps.slot_num == 0 || !(caps.slot_type & CA_CI_LINK) )
{
msg_Err( p_access, "CAMInit: no compatible CAM module" );
close( p_sys->i_ca_handle );
......
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