diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-05 15:24:42 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-05 15:24:42 +0000 |
commit | fffdc76681b5d44e3d8134b0be78334ee5f3a2b1 (patch) | |
tree | 28edc012d66df273cd7dec189803c60ff185cb8a /src | |
parent | d2f2750a3714e6efd552cd610e24f24655a070f3 (diff) | |
download | tinyproxy-fffdc76681b5d44e3d8134b0be78334ee5f3a2b1.tar.gz tinyproxy-fffdc76681b5d44e3d8134b0be78334ee5f3a2b1.zip |
Made is_anonymous_enabled() an inline function.
Diffstat (limited to 'src')
-rw-r--r-- | src/anonymous.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/anonymous.c b/src/anonymous.c index f1bf4e6..24ebd11 100644 --- a/src/anonymous.c +++ b/src/anonymous.c @@ -1,4 +1,4 @@ -/* $Id: anonymous.c,v 1.7 2001-10-25 17:27:39 rjkaes Exp $ +/* $Id: anonymous.c,v 1.8 2001-11-05 15:24:42 rjkaes Exp $ * * Handles insertion and searches for headers which should be let through when * the anonymous feature is turned on. The headers are stored in a Ternary @@ -32,7 +32,7 @@ static TERNARY anonymous_tree = 0; */ static short int anonymous_is_enabled = 0; -short int is_anonymous_enabled(void) +inline short int is_anonymous_enabled(void) { return anonymous_is_enabled; } |