diff options
author | Michael Adam <obnox@samba.org> | 2009-08-04 14:40:25 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-04 23:47:27 +0200 |
commit | 14a3e187ee6b2a708186917550e5fd73652e996d (patch) | |
tree | ffac21dad0ee8133701529d6d42a2105e96f9687 /src/acl.h | |
parent | 64ff313260a7a4b2d6f78f27690d8f4fee119923 (diff) | |
download | tinyproxy-14a3e187ee6b2a708186917550e5fd73652e996d.tar.gz tinyproxy-14a3e187ee6b2a708186917550e5fd73652e996d.zip |
check_acl(): remove the fd argument - it is not used.
Host name and IP address are provided instead.
Michael
Diffstat (limited to '')
-rw-r--r-- | src/acl.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -25,7 +25,6 @@ typedef enum { ACL_ALLOW, ACL_DENY } acl_access_t; extern int insert_acl (char *location, acl_access_t access_type); -extern int check_acl (int fd, const char *ip_address, - const char *string_address); +extern int check_acl (const char *ip_address, const char *string_address); #endif |