Commit 31ca77ef authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/configuration.c: fix config_GetType() to handle the new CONFIG_ITEM_MODULE_foo types.

parent fc893da8
...@@ -96,6 +96,9 @@ int __config_GetType( vlc_object_t *p_this, const char *psz_name ) ...@@ -96,6 +96,9 @@ int __config_GetType( vlc_object_t *p_this, const char *psz_name )
break; break;
case CONFIG_ITEM_MODULE: case CONFIG_ITEM_MODULE:
case CONFIG_ITEM_MODULE_CAT:
case CONFIG_ITEM_MODULE_LIST:
case CONFIG_ITEM_MODULE_LIST_CAT:
i_type = VLC_VAR_MODULE; i_type = VLC_VAR_MODULE;
break; break;
......
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