X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fnetwork%2Facl.c;fp=src%2Fnetwork%2Facl.c;h=3c39dd7b89da542b2914cd861c3dc125b01d85e0;hb=37a5c2e96b7a7f85baa6fd24d3369ebfd63d671f;hp=5c4ffd3058116cff7f98f2d1f228300a60a0aff1;hpb=9ae7d4e604370f2dec236494c48bc33b685a014b;p=vlc diff --git a/src/network/acl.c b/src/network/acl.c index 5c4ffd3058..3c39dd7b89 100644 --- a/src/network/acl.c +++ b/src/network/acl.c @@ -199,7 +199,7 @@ int ACL_AddNet( vlc_acl_t *p_acl, const char *psz_ip, int i_len, return 0; } - +#undef ACL_Create /** * Creates an empty ACL. * @@ -208,7 +208,7 @@ int ACL_AddNet( vlc_acl_t *p_acl, const char *psz_ip, int i_len, * * @return an ACL object. NULL in case of error. */ -vlc_acl_t *__ACL_Create( vlc_object_t *p_this, bool b_allow ) +vlc_acl_t *ACL_Create( vlc_object_t *p_this, bool b_allow ) { vlc_acl_t *p_acl; @@ -225,7 +225,7 @@ vlc_acl_t *__ACL_Create( vlc_object_t *p_this, bool b_allow ) return p_acl; } - +#undef ACL_Duplicate /** * Perform a deep copy of an existing ACL. * @@ -234,7 +234,7 @@ vlc_acl_t *__ACL_Create( vlc_object_t *p_this, bool b_allow ) * * @return a new ACL object, or NULL on error. */ -vlc_acl_t *__ACL_Duplicate( vlc_object_t *p_this, const vlc_acl_t *p_acl ) +vlc_acl_t *ACL_Duplicate( vlc_object_t *p_this, const vlc_acl_t *p_acl ) { vlc_acl_t *p_dupacl;