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
11c1769c
Commit
11c1769c
authored
Jan 01, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc: look "syslog" value only once, simplify
parent
bc1fa152
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
src/libvlc.c
src/libvlc.c
+3
-8
No files found.
src/libvlc.c
View file @
11c1769c
...
...
@@ -454,14 +454,6 @@ dbus_out:
free
(
psz_modules
);
free
(
psz_control
);
if
(
var_InheritBool
(
p_libvlc
,
"file-logging"
)
#ifdef HAVE_SYSLOG_H
&&
!
var_InheritBool
(
p_libvlc
,
"syslog"
)
#endif
)
{
intf_Create
(
p_libvlc
,
"logger,none"
);
}
#ifdef HAVE_SYSLOG_H
if
(
var_InheritBool
(
p_libvlc
,
"syslog"
)
)
{
...
...
@@ -476,7 +468,10 @@ dbus_out:
}
var_Destroy
(
p_libvlc
,
"logmode"
);
}
else
#endif
if
(
var_InheritBool
(
p_libvlc
,
"file-logging"
)
)
intf_Create
(
p_libvlc
,
"logger,none"
);
if
(
var_InheritBool
(
p_libvlc
,
"network-synchronisation"
)
)
{
...
...
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