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
58e25ba4
Commit
58e25ba4
authored
Jul 17, 2005
by
Rémi Denis-Courmont
Browse files
Forgot this file - default to allowing every body when there is no .hosts
parent
317cd9b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/control/http.c
View file @
58e25ba4
...
...
@@ -585,8 +585,11 @@ static int ParseDirectory( intf_thread_t *p_intf, char *psz_root,
sprintf
(
dir
,
"%s/.hosts"
,
psz_dir
);
p_acl
=
ACL_Create
(
p_intf
,
VLC_FALSE
);
ACL_LoadFile
(
p_acl
,
dir
);
if
(
ACL_LoadFile
(
p_acl
,
dir
)
)
{
ACL_Destroy
(
p_acl
);
p_acl
=
NULL
;
}
for
(
;;
)
{
...
...
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