diff options
author | Mukund Sivaraman <muks@banu.com> | 2009-09-20 13:58:50 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2009-09-20 13:58:50 +0530 |
commit | 919eedc7f9c2e702162647ae79e6db079f98e981 (patch) | |
tree | bf762c20e9057ce245f9b8ad7db2cd69e53baa4c /src/acl.c | |
parent | 403fd7cc259bea362b2f1f43e517c4e0c1e6f418 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |