X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_input.h;h=be2821265c6988220ae8b667f8ea47db0d95ae16;hb=552b5247eea6d1c0c93407c49ce64a39af751e43;hp=13f19d656d6af1a41c1174dc9303c7c8dc328670;hpb=f8763a6ca1881728dbc5025acfe3103536036ab7;p=vlc diff --git a/include/vlc_input.h b/include/vlc_input.h index 13f19d656d..be2821265c 100644 --- a/include/vlc_input.h +++ b/include/vlc_input.h @@ -31,7 +31,7 @@ #include #include -#include /* strstr() */ +#include /* strcasestr() */ struct vlc_meta_t; @@ -169,7 +169,7 @@ static inline bool input_item_MetaMatch( input_item_t *p_i, vlc_meta_type_t meta return false; } const char * meta = vlc_meta_Get( p_i->p_meta, meta_type ); - bool ret = meta && strstr( meta, psz ); + bool ret = meta && strcasestr( meta, psz ); vlc_mutex_unlock( &p_i->lock ); return ret;