summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-08-04 14:30:52 +0200
committerMichael Adam <obnox@samba.org>2009-08-04 23:47:27 +0200
commitb9f2325c54613e33623c377d590084091c61352d (patch)
tree5ad0d35e2199c0faed483c9439a8fee9160b3814 /src
parenta34276feee15941ad2cb753bde95ac4f96260d10 (diff)
downloadtinyproxy-b9f2325c54613e33623c377d590084091c61352d.tar.gz
tinyproxy-b9f2325c54613e33623c377d590084091c61352d.zip
check_acl(): add cast to recuce compiler warning (unsigned / signed comparison)
vector_lenth() returns < 0 if the vectore is NULL but this has been checked before, so we can safely cast. Michael
Diffstat (limited to '')
-rw-r--r--src/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/acl.c b/src/acl.c
index ffb73f4..cf7f747 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -347,7 +347,7 @@ check_acl (int fd, const char *ip, const char *host)
if (!access_list)
return 1;
- for (i = 0; i != vector_length (access_list); ++i)
+ for (i = 0; i != (size_t)vector_length (access_list); ++i)
{
acl = vector_getentry (access_list, i, NULL);
switch (acl->type)