Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
1a24ef3f
Commit
1a24ef3f
authored
Jan 10, 2016
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
https: missing cast
parent
680ced41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/access/http/tunnel_test.c
modules/access/http/tunnel_test.c
+1
-1
No files found.
modules/access/http/tunnel_test.c
View file @
1a24ef3f
...
...
@@ -115,7 +115,7 @@ static int server_socket(unsigned *port)
socklen_t
addrlen
=
sizeof
(
addr
);
if
(
bind
(
fd
,
(
struct
sockaddr
*
)
&
addr
,
addrlen
)
||
getsockname
(
fd
,
&
addr
,
&
addrlen
))
||
getsockname
(
fd
,
(
struct
sockaddr
*
)
&
addr
,
&
addrlen
))
{
close
(
fd
);
return
-
1
;
...
...
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