Changeset 58e25ba45e0d05ca9fd88606953814fb23d3b0eb

Show
Ignore:
Timestamp:
17/07/05 08:57:31 (3 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1121583451 +0000
git-parent:

[317cd9b8180bc7531f736532315ca96c97d62a4c]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1121583451 +0000
Message:

Forgot this file - default to allowing every body when there is no .hosts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/control/http.c

    re6a2e27 r58e25ba  
    586586    sprintf( dir, "%s/.hosts", psz_dir ); 
    587587    p_acl = ACL_Create( p_intf, VLC_FALSE ); 
    588     ACL_LoadFile( p_acl, dir ); 
    589      
     588    if( ACL_LoadFile( p_acl, dir ) ) 
     589    { 
     590        ACL_Destroy( p_acl ); 
     591        p_acl = NULL; 
     592    } 
    590593 
    591594    for( ;; )