]> git.sesse.net Git - vlc/commitdiff
Don't take removed options into account when checking if a module has non advanced...
authorAntoine Cellerier <dionoea@videolan.org>
Tue, 2 Sep 2008 11:31:17 +0000 (13:31 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Tue, 2 Sep 2008 11:31:17 +0000 (13:31 +0200)
src/libvlc.c

index 456323632080e660e0b330b36de3c10547e23265..d4be2b38d3a151dc73ef17a8be8b505f06e06e96 100644 (file)
@@ -1496,7 +1496,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
                  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 )