Changeset 262c049bddab97077b49e00600a33ccd242d052d

Show
Ignore:
Timestamp:
01/24/08 17:07:03 (7 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1201190823 +0000
git-parent:

[1bfa2aad5fbac15dec7086178f6e45fd417c7595]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1201190823 +0000
Message:

Consistent naming

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_configuration.h

    rcc008d9 r262c049  
    192192    vlc_bool_t   b_unsaveable;                    /* Config should be saved */ 
    193193 
    194     vlc_bool_t   b_unsafe; 
     194    vlc_bool_t   b_safe; 
    195195}; 
    196196 
  • src/config/chain.c

    r99fab90 r262c049  
    321321                           name, psz_name ); 
    322322            } 
    323             if( p_conf->b_unsafe ) 
     323            if( p_conf->b_safe ) 
    324324            { 
    325325                int policy = config_GetInt( p_this, "security-policy" ); 
  • src/misc/variables.c

    r99fab90 r262c049  
    11001100    { 
    11011101        module_config_t *p_config = config_FindConfig( p_obj, psz_name ); 
    1102         if( p_config->b_unsafe ) 
     1102        if( p_config->b_safe ) 
    11031103        { 
    11041104            int policy = config_GetInt( p_obj, "security-policy" ); 
  • src/modules/entry.c

    rcc008d9 r262c049  
    413413 
    414414        case VLC_CONFIG_SAFE: 
    415             item->b_unsafe = VLC_TRUE; 
     415            item->b_safe = VLC_TRUE; 
    416416            ret = 0; 
    417417            break;