diff options
author | Mukund Sivaraman <muks@banu.com> | 2010-02-17 23:11:45 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2010-02-17 23:11:45 +0530 |
commit | 907a6c2420ca059906827b11d92fae7a0b72e1da (patch) | |
tree | 6eb4be137ac28da1000610169c6a9b66500d53cc /src/main.c | |
parent | c6d4c68c993a0f14128c530fb8c618192cad3a1c (diff) | |
download | tinyproxy-907a6c2420ca059906827b11d92fae7a0b72e1da.tar.gz tinyproxy-907a6c2420ca059906827b11d92fae7a0b72e1da.zip |
Display upstream proxy support in usage message
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -181,6 +181,11 @@ display_usage (void) features++; #endif /* REVERSE_SUPPORT */ +#ifdef UPSTREAM_SUPPORT + printf (" Upstream proxy support\n"); + features++; +#endif /* UPSTREAM_SUPPORT */ + if (0 == features) printf (" None\n"); |