Changeset 262c049bddab97077b49e00600a33ccd242d052d
- 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
| rcc008d9 |
r262c049 |
|
| 192 | 192 | vlc_bool_t b_unsaveable; /* Config should be saved */ |
|---|
| 193 | 193 | |
|---|
| 194 | | vlc_bool_t b_unsafe; |
|---|
| | 194 | vlc_bool_t b_safe; |
|---|
| 195 | 195 | }; |
|---|
| 196 | 196 | |
|---|
| r99fab90 |
r262c049 |
|
| 321 | 321 | name, psz_name ); |
|---|
| 322 | 322 | } |
|---|
| 323 | | if( p_conf->b_unsafe ) |
|---|
| | 323 | if( p_conf->b_safe ) |
|---|
| 324 | 324 | { |
|---|
| 325 | 325 | int policy = config_GetInt( p_this, "security-policy" ); |
|---|
| r99fab90 |
r262c049 |
|
| 1100 | 1100 | { |
|---|
| 1101 | 1101 | module_config_t *p_config = config_FindConfig( p_obj, psz_name ); |
|---|
| 1102 | | if( p_config->b_unsafe ) |
|---|
| | 1102 | if( p_config->b_safe ) |
|---|
| 1103 | 1103 | { |
|---|
| 1104 | 1104 | int policy = config_GetInt( p_obj, "security-policy" ); |
|---|
| rcc008d9 |
r262c049 |
|
| 413 | 413 | |
|---|
| 414 | 414 | case VLC_CONFIG_SAFE: |
|---|
| 415 | | item->b_unsafe = VLC_TRUE; |
|---|
| | 415 | item->b_safe = VLC_TRUE; |
|---|
| 416 | 416 | ret = 0; |
|---|
| 417 | 417 | break; |
|---|