Commit 15217063 authored by Christophe Massiot's avatar Christophe Massiot

* en50221.c: Fix a regression introduced in [148] (CA sysId not taken into account).

parent b373c984
...@@ -1063,11 +1063,8 @@ static bool CheckSystemID( system_ids_t *p_ids, uint16_t i_id ) ...@@ -1063,11 +1063,8 @@ static bool CheckSystemID( system_ids_t *p_ids, uint16_t i_id )
if( p_ids->b_high_level ) return true; if( p_ids->b_high_level ) return true;
for ( i = 0; i < p_ids->i_nb_system_ids; i++ ) for ( i = 0; i < p_ids->i_nb_system_ids; i++ )
{
if ( p_ids->pi_system_ids[i] == i_id ) if ( p_ids->pi_system_ids[i] == i_id )
return true; return true;
i++;
}
return false; return false;
} }
......
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