Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
262c049b
Commit
262c049b
authored
Jan 24, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consistent naming
parent
1bfa2aad
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
include/vlc_configuration.h
include/vlc_configuration.h
+1
-1
src/config/chain.c
src/config/chain.c
+1
-1
src/misc/variables.c
src/misc/variables.c
+1
-1
src/modules/entry.c
src/modules/entry.c
+1
-1
No files found.
include/vlc_configuration.h
View file @
262c049b
...
@@ -191,7 +191,7 @@ struct module_config_t
...
@@ -191,7 +191,7 @@ struct module_config_t
vlc_bool_t
b_autosave
;
/* Config will be auto-saved at exit time */
vlc_bool_t
b_autosave
;
/* Config will be auto-saved at exit time */
vlc_bool_t
b_unsaveable
;
/* Config should be saved */
vlc_bool_t
b_unsaveable
;
/* Config should be saved */
vlc_bool_t
b_
un
safe
;
vlc_bool_t
b_safe
;
};
};
/*****************************************************************************
/*****************************************************************************
...
...
src/config/chain.c
View file @
262c049b
...
@@ -320,7 +320,7 @@ void __config_ChainParse( vlc_object_t *p_this, const char *psz_prefix,
...
@@ -320,7 +320,7 @@ void __config_ChainParse( vlc_object_t *p_this, const char *psz_prefix,
msg_Warn
(
p_this
,
"Option %s is obsolete. Use %s instead."
,
msg_Warn
(
p_this
,
"Option %s is obsolete. Use %s instead."
,
name
,
psz_name
);
name
,
psz_name
);
}
}
if
(
p_conf
->
b_
un
safe
)
if
(
p_conf
->
b_safe
)
{
{
int
policy
=
config_GetInt
(
p_this
,
"security-policy"
);
int
policy
=
config_GetInt
(
p_this
,
"security-policy"
);
switch
(
policy
)
switch
(
policy
)
...
...
src/misc/variables.c
View file @
262c049b
...
@@ -1099,7 +1099,7 @@ void __var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
...
@@ -1099,7 +1099,7 @@ void __var_OptionParse( vlc_object_t *p_obj, const char *psz_option )
/* check if option is unsafe */
/* check if option is unsafe */
{
{
module_config_t
*
p_config
=
config_FindConfig
(
p_obj
,
psz_name
);
module_config_t
*
p_config
=
config_FindConfig
(
p_obj
,
psz_name
);
if
(
p_config
->
b_
un
safe
)
if
(
p_config
->
b_safe
)
{
{
int
policy
=
config_GetInt
(
p_obj
,
"security-policy"
);
int
policy
=
config_GetInt
(
p_obj
,
"security-policy"
);
switch
(
policy
)
switch
(
policy
)
...
...
src/modules/entry.c
View file @
262c049b
...
@@ -412,7 +412,7 @@ int vlc_config_set (module_config_t *restrict item, int id, ...)
...
@@ -412,7 +412,7 @@ int vlc_config_set (module_config_t *restrict item, int id, ...)
}
}
case
VLC_CONFIG_SAFE
:
case
VLC_CONFIG_SAFE
:
item
->
b_
un
safe
=
VLC_TRUE
;
item
->
b_safe
=
VLC_TRUE
;
ret
=
0
;
ret
=
0
;
break
;
break
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment