Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f0d86d58
Commit
f0d86d58
authored
Apr 02, 2006
by
Rémi Denis-Courmont
Browse files
Fix warning
parent
775b1169
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/network/acl.c
View file @
f0d86d58
...
...
@@ -56,9 +56,10 @@ struct vlc_acl_t
static
int
ACL_Resolve
(
vlc_object_t
*
p_this
,
uint8_t
*
p_bytes
,
const
char
*
psz_ip
)
{
struct
addrinfo
hints
=
{
0
}
,
*
res
;
struct
addrinfo
hints
,
*
res
;
int
i_family
;
memset
(
&
hints
,
0
,
sizeof
(
hints
));
hints
.
ai_socktype
=
SOCK_STREAM
;
/* doesn't matter */
hints
.
ai_flags
=
AI_NUMERICHOST
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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