summaryrefslogtreecommitdiffhomepage
path: root/src/acl.c
diff options
context:
space:
mode:
authorMukund Sivaraman <muks@banu.com>2009-09-20 13:58:50 +0530
committerMukund Sivaraman <muks@banu.com>2009-09-20 13:58:50 +0530
commit919eedc7f9c2e702162647ae79e6db079f98e981 (patch)
treebf762c20e9057ce245f9b8ad7db2cd69e53baa4c /src/acl.c
parent403fd7cc259bea362b2f1f43e517c4e0c1e6f418 (diff)
Remove inline keyword from static functions
The compiler inlines static functions as necessary anyway. No more inline keywords exist in Tinyproxy source code. We want to avoid using this keyword anyway.
Diffstat (limited to 'src/acl.c')
-rw-r--r--src/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/acl.c b/src/acl.c
index da3e76e..4eb2fcc 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -68,7 +68,7 @@ static vector_t access_list = NULL;
* -1 on failure (invalid mask value)
*
*/
-inline static int
+static int
fill_netmask_array (char *bitmask_string, unsigned char array[],
unsigned int len)
{