[vlc-commits] [Git][videolan/vlc][master] core: fix bad `--tracer` option default
    Rémi Denis-Courmont (@Courmisch) 
    gitlab at videolan.org
       
    Sun Feb  6 16:59:38 UTC 2022
    
    
  
Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC
Commits:
71a389df by Lyndon Brown at 2022-02-06T14:49:30+00:00
core: fix bad `--tracer` option default
 1. Should be a value like `"any"` as with the other module selection
    options to avoid mismatch with the choice list.
 2. Per review, the default wanted for this should actually be `"none"`.
- - - - -
1 changed file:
- src/libvlc-module.c
Changes:
=====================================
src/libvlc-module.c
=====================================
@@ -2043,7 +2043,7 @@ vlc_module_begin ()
     add_category_hint(N_("Advanced"), NULL)
     set_section( N_("Special modules"), NULL )
     add_obsolete_string("vod-server") /* since 4.0.0 */
-    add_module("tracer", "tracer", NULL,
+    add_module("tracer", "tracer", "none",
                TRACER_TEXT, TRACER_LONGTEXT)
 
     set_section( N_("Plugins" ), NULL )
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/71a389dfe146bb5dc14c192a91296ed9ebd3573f
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/71a389dfe146bb5dc14c192a91296ed9ebd3573f
You're receiving this email because of your account on code.videolan.org.
    
    
More information about the vlc-commits
mailing list