diff options
author | Michael Adam <obnox@samba.org> | 2009-09-27 11:54:38 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-27 12:32:31 +0200 |
commit | eecf145dbb77d3286014fcdf3e064022594d96c0 (patch) | |
tree | 9d8c897992dc4169e68d9268cf0dbffacac75b94 /src/main.h | |
parent | 0539be08b46e04e39af08899bd1d942765ab4db4 (diff) |
conf: turn XTinyproxy into a boolean option
This is what it actually is.
The string value was used in earlier versions to compare
against the uri->authority string. But not as a list of
sites to create an X-Tinyproxy header for, as the tinyproxy.conf
template states...
Michael
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ struct config_s { unsigned int filter_casesensitive; /* boolean */ #endif /* FILTER_ENABLE */ #ifdef XTINYPROXY_ENABLE - char *my_domain; + unsigned int add_xtinyproxy; /* boolean */ #endif #ifdef REVERSE_SUPPORT struct reversepath *reversepath_list; |