Commit a301fc7f authored by Antoine Cellerier's avatar Antoine Cellerier

Don't take removed options into account when checking if a module has non advanced help options.

(cherry picked from commit 72efa988)
parent 3f55ec37
......@@ -1469,7 +1469,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_module_name )
p_item++ )
{
if( (p_item->i_type & CONFIG_ITEM) &&
!p_item->b_advanced ) break;
!p_item->b_advanced && !p_item->b_removed ) break;
}
if( p_item == p_end )
......
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