]> git.sesse.net Git - vlc/blobdiff - src/network/acl.c
Removes trailing spaces. Removes tabs.
[vlc] / src / network / acl.c
index c5779e4879cc9f12b79b467d42ad0a603f5ea21f..00f73dd170466ef6575678c7f8a5caef50bd8a12 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdlib.h>
-#include <string.h>
-#include <ctype.h>
 #include <vlc/vlc.h>
 
+#include <ctype.h>
 #include <vlc_acl.h>
 
 #include <errno.h>
@@ -375,7 +373,7 @@ int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path )
             *ptr++ = '\0'; /* separate address from mask length */
 
         if( (ptr != NULL)
-            ? ACL_AddNet( p_acl, psz_ip, atoi( ptr ), VLC_TRUE ) 
+            ? ACL_AddNet( p_acl, psz_ip, atoi( ptr ), VLC_TRUE )
             : ACL_AddHost( p_acl, psz_ip, VLC_TRUE ) )
         {
             msg_Err( p_acl->p_owner, "cannot add ACL from %s", psz_path );