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
a63ffa2b
Commit
a63ffa2b
authored
Dec 29, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RC (old): use vlc_strerror_c()
parent
7308be6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
modules/control/rc.c
modules/control/rc.c
+5
-4
No files found.
modules/control/rc.c
View file @
a63ffa2b
...
...
@@ -246,7 +246,7 @@ static int Activate( vlc_object_t *p_this )
if
(
(
i_socket
=
vlc_socket
(
PF_LOCAL
,
SOCK_STREAM
,
0
,
false
)
)
<
0
)
{
msg_Warn
(
p_intf
,
"can't open socket: %
m"
);
msg_Warn
(
p_intf
,
"can't open socket: %
s"
,
vlc_strerror_c
(
errno
)
);
free
(
psz_unix_path
);
return
VLC_EGENERIC
;
}
...
...
@@ -265,8 +265,8 @@ static int Activate( vlc_object_t *p_this )
if
(
bind
(
i_socket
,
(
struct
sockaddr
*
)
&
addr
,
sizeof
(
addr
)))
{
msg_Err
(
p_intf
,
"cannot bind UNIX socket at %s: %
m
"
,
psz_unix_path
);
msg_Err
(
p_intf
,
"cannot bind UNIX socket at %s: %
s
"
,
psz_unix_path
,
vlc_strerror_c
(
errno
)
);
free
(
psz_unix_path
);
net_Close
(
i_socket
);
return
VLC_EGENERIC
;
...
...
@@ -275,7 +275,8 @@ static int Activate( vlc_object_t *p_this )
if
(
listen
(
i_socket
,
1
)
)
{
msg_Warn
(
p_intf
,
"can't listen on socket: %m"
);
msg_Warn
(
p_intf
,
"can't listen on socket: %s"
,
vlc_strerror_c
(
errno
));
free
(
psz_unix_path
);
net_Close
(
i_socket
);
return
VLC_EGENERIC
;
...
...
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